Podczas aktualizacji mojej aplikacji internetowej z podkreślnika 1.6 do 1.7 pojawia się następujący komunikat o błędzie "lista nie jest zdefiniowana". Podczas korzystania z underscore 1.6 działa idealnie. Jakieś pomysły?Aktualizacja błędu szablonu do podkreślnika 1.7
//acquire the list template
$.get('tpl/listTpl.html', function(templates) {
//run underscore js on the list template and pass in the full collection of models
var template = _.template(templates, {list:app.collections.list.models});
//load the underscore template into the DOM
that.$el.html(template);
});
Jaki jest dokładny komunikat o błędzie? Czy pochodzi z szablonu lub JavaScript? Czy jesteś pewien, że 'app.collections.list.models' jest skonfigurowany tak, jak tego oczekujesz? –