我正在使用我在 SO 上找到的一些代码(这里的第二个答案:knockout.js - deferred databinding for modal?)。
但是,详细信息并未显示在表单中。
rowClick: function(data){
console.log("in row click");
console.log(data); // produces data as per debug below
// load the transaction when a row is clicked
self.EditingTransaction(data);
console.log(self.EditingTransaction()); // produces data as per debug below (not as a observable though)
},
这是查看代码:
<div data-bind="modal: EditingTransaction" class="fade">
<form data-bind="submit: $root.SaveTransaction">
<div class="modal-header">
<a class="close" data-dismiss="modal">×</a>
<h3>
Editing transaction</h3>
</div>
<div class="modal-body">
<label>Date</label> <input type="text" data-bind="text: Date"/></br>
<label>Category</label> <input type="text" data-bind="text: Category"/></br>
<label>Subcategory</label> <input type="text" data-bind="text: Subcategory"/></br>
<label>Amount</label> <input type="text" data-bind="text: Amount"/></br>
<label>Notes</label> <input type="text" data-bind="text: Notes"/></br>
<pre data-bind="text: ko.toJSON($root.EditingTransaction, null, 2)"></pre>
</div>
<div class="modal-footer">
<a href="#" class="btn btn-primary" data-bind="click: $root.SaveTransaction">Save changes</a>
</div>
</form>
</div>
将数据分配给 editTransaction 时显示对话框 - pre ko.toJSON 调试 HTML 显示以下内容:
{
"ID": "1231",
"TransactionType": "Withdrawal",
"Date": "2012-11-07",
"Category": "cat",
"Subcategory": "sub cat",
"Amount": "-50.00",
"currency": "GBP",
"Notes": "",
"AccountName": "Account 2",
"Payee": "Cheque"
}
我已经搜索并看到了有关初始化模式时(加载页面时)数据不可用的评论,但这对我来说没有意义(我相信点绑定是它们在数据视图时更新更改,并且调试语句也可以正常工作)。我已经尝试在绑定代码中不使用 with 并且在数据绑定文本中引用 $root 。
因此,任何为什么它不起作用的想法都会很棒。