1

我已经编译了一个玉模板,如:

jade --client --no-debug ...

然后在客户端包含jade.js和编译的模板文件。但是jade.escape 是未定义的。我注意到编译后的模板函数如下所示:

function anonymous(locals, attrs, escape, rethrow, merge) {
    attrs = attrs || jade.attrs; escape = escape || jade.escape; rethrow = rethrow || jade.rethrow; merge = merge || jade.merge;
    var buf = [];
    with (locals || {}) {
    var interp;
    buf.push('<h1>');
    var __val__ = title
    buf.push(escape(null == __val__ ? "" : __val__));
    buf.push('</h1>');
    }
    return buf.join("");
}

注意转义是如何作为参数传入的。那么预期的使用情况如何?

假设我有一个非常简单的模板:

h1= title

然后我像这样使用它:

html = anonymous({title: "Hello World!"})

但这意味着逃逸将是不确定的?我注意到jade.escape 也未定义,尽管我包括在内jade.js

4

1 回答 1

2

您需要将 runtime.js 与jade.js 一起添加才能使用jade.escape。

于 2013-05-04T16:44:27.863 回答