我已成功將分層JSON數據綁定到我的視圖。但是,一旦我使用knockout.mapping將相同的JSON數據投影到視圖模型中,foreach函數就不會遍歷子數組。Foreach適用於JSON兒童,但不適用於ViewModel
當綁定到視圖模型的數據,我知道孩子的數據(答案)是存在的,因爲我可以用
的意見顯示對象的引用:
<div data-bind="foreach: $data">
<p data-bind="html: QuestionText">
<!-- this section outputs [object Object] when bound to pageViewModel or Json -->
<p data-bind="html: Answers">
<!-- RadioButtonSelection-->
<div data-bind="if: QuestionSelectionMode == 'RadioButtonSelection'">
<span data-bind="foreach: $data.Answers">
<input type="radio" data-bind="attr: {name: $parent.QuestionId}, value: AnswerId" /><span data-bind="text: AnswerText"></span>
</span>
</div>
<!-- CheckBoxSelection-->
<div data-bind="if: QuestionSelectionMode == 'CheckBoxSelection'">
<span data-bind="foreach: $data.Answers">
<div><input type="checkbox" data-bind="value: AnswerId"/><span data-bind="text: AnswerText"></span></div>
</span>
</div>
<!-- DropDownListSelection-->
<div data-bind="if: QuestionSelectionMode == 'DropDownListSelection'">
<select data-bind="options: $data.Answers, optionsText: 'AnswerText', optionsValue: 'AnswerId'"></select>
</div>
</p>
</div>
視圖模型代碼:
<script type="text/javascript">
/* get the first page of questions and bind them */
@{
string startUrl = "URL-Removed" + ViewData["formId"] + "?page=" + ViewData["pageNumber"];
}
var pageViewModel;
$.ajax({ url: '@startUrl' ,
async: false,
dataType: 'json',
success: function (data) {
//console.log("JSON received: " + JSON.stringify(data));
// when i bind to the view model the parent question text shows, but not the child answers
pageViewModel = ko.mapping.fromJS(data);
ko.applyBindings(pageViewModel);
//ko.applyBindings(data);
},
error: function (jqXHR, textStatus, errorThrown) {
console.log("Error: TextStatus: " + textStatus + " errorThrown: " + errorThrown);
}
});
</script>
這裏是JSON中的一些數據:
[{"FormId":0,"QuestionId":28807,"QuestionSelectionMode":"StaticTextSelection","QuestionText":"<hr />\r\n<div><span style=\"font-size: medium\"><span style=\"color: #003366\"><strong>Event Details</strong></span></span></div>","DisplayOrder":1,"PageNumber":1,"Answers":[]},{"FormId":0,"QuestionId":28782,"QuestionSelectionMode":"RadioButtonSelection","QuestionText":"<div><span style=\"font-size: larger\"><strong>What type of patient safety event is being reported?</strong></span><span style=\"font-size: x-small\"><strong> </strong><font color=\"#ff0000\" size=\"1\">(Required)</font></span></div>","DisplayOrder":2,"PageNumber":1,"Answers":[{"AnswerId":460935,"QuestionId":0,"AnswerTypeId":null,"RegularExpressionId":null,"AnswerText":"Reached the patient","DisplayOrder":1,"Selected":null,"DefaultText":null,"Mandatory":null,"ValidatorId":null,"SyncRefMandatory":null,"FieldLength":null,"AnswerFormId":null,"EntryMaskId":null,"ShowTimeSelector":null,"Disabled":false},{"AnswerId":460936,"QuestionId":0,"AnswerTypeId":null,"RegularExpressionId":null,"AnswerText":"Did not reach the patient (Near Miss)","DisplayOrder":2,"Selected":null,"DefaultText":null,"Mandatory":null,"ValidatorId":null,"SyncRefMandatory":null,"FieldLength":null,"AnswerFormId":null,"EntryMaskId":null,"ShowTimeSelector":null,"Disabled":false},{"AnswerId":460937,"QuestionId":0,"AnswerTypeId":null,"RegularExpressionId":null,"AnswerText":"Unsafe Condition","DisplayOrder":3,"Selected":null,"DefaultText":null,"Mandatory":null,"ValidatorId":null,"SyncRefMandatory":null,"FieldLength":null,"AnswerFormId":null,"EntryMaskId":null,"ShowTimeSelector":null,"Disabled":false}]},{"FormId":0,"QuestionId":46080,"QuestionSelectionMode":"RadioButtonSelection","QuestionText":"<div><span style=\"font-size: larger\"><strong>Was the patient harmed?</strong></span></div>","DisplayOrder":3,"PageNumber":1,"Answers":[{"AnswerId":632595,"QuestionId":0,"AnswerTypeId":null,"RegularExpressionId":null,"AnswerText":"Yes","DisplayOrder":1,"Selected":null,"DefaultText":null,"Mandatory":null,"ValidatorId":null,"SyncRefMandatory":null,"FieldLength":null,"AnswerFormId":null,"EntryMaskId":null,"ShowTimeSelector":null,"Disabled":false},{"AnswerId":632596,"QuestionId":0,"AnswerTypeId":null,"RegularExpressionId":null,"AnswerText":"No","DisplayOrder":2,"Selected":null,"DefaultText":null,"Mandatory":null,"ValidatorId":null,"SyncRefMandatory":null,"FieldLength":null,"AnswerFormId":null,"EntryMaskId":null,"ShowTimeSelector":null,"Disabled":false}]}, and so on...
有什麼想法?
是什麼數據是什麼樣子? – CodeThug
以下是部分數據轉儲: – Jelling