3
有什麼辦法來編譯服務器和獲得Closure編譯器與生成的代碼上工作Underscore.js模板?使用Closure編譯器與Underscore.js _.template
的主要問題是_.template
:
_.template = function(str, data) {
var c = _.templateSettings;
var tmpl = 'var __p=[],print=function(){__p.push.apply(__p,arguments);};' +
'with(obj||{}){__p.push(\'' +
str.replace(/\\/g, '\\\\')
.replace(/'/g, "\\'")
.replace(c.interpolate, function(match, code) {
return "'," + code.replace(/\\'/g, "'") + ",'";
})
.replace(c.evaluate || null, function(match, code) {
return "');" + code.replace(/\\'/g, "'")
.replace(/[\r\n\t]/g, ' ') + "__p.push('";
})
.replace(/\r/g, '\\r')
.replace(/\n/g, '\\n')
.replace(/\t/g, '\\t')
+ "');}return __p.join('');";
var func = new Function('obj', tmpl);
return data ? func(data) : func;
};
生成JavaScript在它與語句。這兩個明顯的路線是:
- 修改Underscore.js的
_.template
不產生withs - 要挾封蓋進入踢得好看
是第二個選項可能嗎?
是的,我的目標是進行高級編輯。我不願意修改_.template是因爲它是定期更新的庫代碼 - 一個維護問題。 – hughdbrown
根據您的需求,您可能會考慮使用專用於ADVANCED編譯的Closure模板。 – John