the5fire / backbonejs-learning-note

backbonejs学习笔记更新版,使用backbone1.1.0
MIT License
950 stars 291 forks source link

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

Open lional opened 9 years ago

lional commented 9 years ago

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

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

the5fire commented 9 years ago

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

tanshiqi commented 9 years ago
var template = _.template($("#search_template").html())(context);
$(this.el).html(template);

这样就没有问题了