标签:code jad -o world pre 使用外部 html 运行 如何
jade index.jade // 解析后生成压缩代码后的index.html
jade -P index.jade
jade -P -w index.jade
方法一:
jade -P -w index.jade --obj ‘{"b":"hello1"}‘//解析后: <p>hello1 world</p>
方法二:使用外部的json文件来传递变量值
//a.json {"b":"hello2"} //运行 jade -P -w index.jade -O a.json //解析后: <p>hello2 world</p>
标签:code jad -o world pre 使用外部 html 运行 如何
原文地址:https://www.cnblogs.com/kunmomo/p/11254868.html