我想将charAt js函数添加到手写笔中,并尝试在手写笔文档中发布的示例,如下所示:
var stylus = require('./node_modules/stylus')
, nodes = stylus.nodes
, utils = stylus.utils
, fs = require('fs');
function charAt(string, index) {
return string.charAt(index);
}
stylus(str)
.set('filename', 'js-functions')
.define('charAt', charAt)
.render(function(err, css){
if (err) throw err;
console.log(css);
});
我将需求路径更改为我的手写笔目录,在test.styl
内,我有以下内容:
use('js-functions.js')
当我运行它时出错:
ReferenceError: test.styl:1
> 1| use("js-functions.js")
2|
3|
4|
str is not defined
这里发生了什么?,我缺少什么?,对于那些不熟悉节点和手写笔的人来说,文档并不能很好地解释。
答案 0 :(得分:2)
创建一个文件' test.js'像这样:
var plugin = function(){
return function(style){
style.define('charAt', function (string, index) {
})
}
}
module.exports = plugin;
手写笔代码:
use('test.js')