我开始学习一些 Web 编程并选择了 knockout.js,因为 MVVM 模式对我来说很熟悉,并且在 .Net 中有一些使用 MVVM 的经验。
但是我在使用嵌套数组制作循环时遇到了一些麻烦。该模型非常简单:我有一系列主题,每个主题都有一系列故事。
您可以在Fiddle上查看完整代码,但这里有一个简化版本:
ViewModel.js:
function Story(t, u, v) {
var self = this;
self.summary = ko.observable(t);
self.url = ko.observable(u);
self.up_votes = ko.observable(v);
}
function Topic(t) {
var self = this;
self.title = ko.observable(t);
self.stories = ko.observableArray();
}
function TopicListViewModel() {
var self = this;
self.topics = ko.observableArray([]);
}
主题.html:
<!-- ko foreach: topics -->
<div class="span2">
<table cellpadding="2" cellspacing="2" style="width:100%" class="table">
<thead>
<tr>
<th>
<span data-bind="text: title"> </span>
</th>
</tr>
</thead>
<tbody data-bind="foreach: $data.stories">
<tr>
<!--<a data-bind="attrib: { href: url, title: summary} "></a>-->
<span data-bind="text: summary"> </span>
</tr>
</tbody>
</table>
</div>
<!-- /ko -->
我不断遇到的问题是在故事循环中。我不断得到,Message: ReferenceError: summary is not defined;
但我在 Chrome 中调试了代码,故事确实是一组summary
定义了属性的对象。
我在这里做错了什么?