我在 VS 2012 中有一个使用 MVC4 和 HotTowel 模板的项目。
我尝试用http://knockoutjs.com/examples/helloWorld.html上的 Hello World 示例替换 details.html 和 details.js 。
所以 details.html 现在是:
<p>First name: <input data-bind="value: firstName" /></p>
<p>Last name: <input data-bind="value: lastName" /></p>
<h2>Hello, <span data-bind="text: fullName"> </span>!</h2>
和 details.js:
// Here's my data model
var ViewModel = function(first, last) {
this.firstName = ko.observable(first);
this.lastName = ko.observable(last);
this.fullName = ko.computed(function() {
// Knockout tracks dependencies automatically. It knows that fullName depends on firstName and lastName, because these get called when evaluating fullName.
return this.firstName() + " " + this.lastName();
}, this);
};
ko.applyBindings(new ViewModel("Planet", "Earth")); // This makes Knockout get to work
但是现在我从详细信息页面中一无所获。导航块中的进度条只是停留在那里。
我一定缺少一些基本的东西。HotTowel 中有什么我必须做的事情才能让它工作吗?