我正在使用 Knockout 构建一个应用程序,发现它非常有用。虽然,我在获取多维数组(对象)可观察时遇到了问题。
目前我正在使用以下结构:
self.form = ko.observableArray(ko.utils.arrayMap(initialData, function(section) {
var result = {
name : section.name,
code : section.code,
type : section.type,
fields: ko.observableArray(section.fields)
};
return result;
}));
它运作良好,但如果initialData超过两个级别,我无法让它运作。我尝试了类似的东西
self.form = ko.observableArray(ko.utils.arrayMap(initialData, function(block) {
var result = {
name : block.name,
code : block.code,
type : block.type,
sections: ko.observableArray(ko.utils.arrayMap(block.sections, function(section) {
var result = {
name : section.name,
code : section.code,
type : section.type,
fields: ko.observableArray(section.fields)
};
return result;
}))
};
return result;
}));
最终的数组结构看起来不错,但是当我推送到节数组时,淘汰赛不会更新 DOM:
self.addField = function( section ) {
field = {
code: uid(),
name: "New Field",
value: '',
type: section.type
};
section.fields.push(field);
};
我还尝试了一个 knockout.mapping.js 插件(这是一种正确的方法吗?)首先看起来不错,但是在推入上面的函数之后,我的新字段元素不可观察,只是对象。
插件文档说:
// Every time data is received from the server:
ko.mapping.fromJS(data, viewModel);
但我不确定这是我的情况。
如果有人有任何想法,将不胜感激。
谢谢。
UPD:让第 1 层和第 2 层可观察到不是问题,问题是要更深入。
这是initialData的示例:
var blocks = [
{
"name" : "",
"sections" : [
{
"name" : "Section 1",
"fields" : [
{
"name" : "Field A",
"type" : "checkbox",
"code" : uid()
}
]
}
]
}
];
HTML
<div data-bind='template: { name: tpl-form-field-checkbox, foreach: fields }'></div>
<button class="btn addField" data-bind="click: $root.addField">Add</button>
<script type="text/html" id="tpl-form-field-checkbox">
<input type="text" name="" value="<%= name %>" /> <br/>
</script>