0

我已经通过 npm 包管理器安装了swig-extras ,因为我需要新的过滤器。

我正在使用命令行界面编译我的模板

$ swig render ./index.html -j ./index.json

我尝试实现截断过滤器,但我不知道如何更改命令以实现 swig-extras 过滤器。

4

1 回答 1

0

Once again I answered myself

C:\Users\[user name]\AppData\Roaming\npm\node_modules\swig\bin\swig.js

you have to add two lines

extras = require('../../swig-extras');
extras.useFilter(swig, 'truncate');

inside

var swig = 
于 2014-12-23T12:28:20.100 回答