使用javascript api为手写笔添加自定义功能

时间:2014-04-03 11:57:00

标签: javascript stylus

我想将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

这里发生了什么?,我缺少什么?,对于那些不熟悉节点和手写笔的人来说,文档并不能很好地解释。

1 个答案:

答案 0 :(得分:2)

创建一个文件' test.js'像这样:

var plugin = function(){
    return function(style){
        style.define('charAt', function (string, index) {

        })
    }
}
module.exports = plugin;

手写笔代码:

use('test.js')