backbonejs-learning-note icon indicating copy to clipboard operation
backbonejs-learning-note copied to clipboard

请问一下 Backbonejs中的View实践 中模版中的变量提示不存在,该怎么解决

Open lional opened this issue 10 years ago • 2 comments

后台开发使用的是 Node.js ,用Express 4 生成的一个项目, 页面的话是用默认的.ejs 而不是 .html

报错说 search_label is not defined , 请问有什么好的解决办法嘛?

lional avatar Dec 24 '14 09:12 lional

你传参数的时候肯定没传这个过去吧?

the5fire avatar Dec 26 '14 15:12 the5fire

var template = _.template($("#search_template").html())(context);
$(this.el).html(template);

这样就没有问题了

tanshiqi avatar Jan 26 '15 15:01 tanshiqi