首先全局安装jade,我们就可以使用jade 命令了!
jade index.jade
// 解析后会在文件夹中新生成一个压缩代码后的index.html
如果我们不想生成的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>
❗️如果内部使用var声明了一个同名变量,那么内部变量优先级更高