コンポーネントとrequireを含むノックアウト3.2を使用して、監視可能な配列を更新するのに問題があります。宣言時にビューモデルの配列に項目を手動でプッシュできますが、ajax 呼び出しを介して項目をプッシュするか、ボタンのクリックでハードコーディングされたプッシュを介して項目をプッシュすると、DOM は更新されません。
デバッグすると、配列に項目が含まれていることがわかりますが、DOM は更新されていません。どんな助けでも大歓迎です。
Default.html
<!-- ko if: state() === 'home' -->
<template></template>
<!-- /ko -->
Template.html
<table id="items">
<thead>
<tr>
<th>Category</th>
<th>Item</th>
<th>Cost</th>
</tr>
</thead>
<tbody data-bind="foreach: Items()">
<tr>
<td data-bind="text: CategoryName"></td>
<td data-bind="text: Name"></td>
<td data-bind="text: '£' + Cost"></td>
</tr>
</tbody>
</table>
Startup.js
var appStateViewModel = {
isRunning: ko.observable(false),
state: ko.observable('home'),
allowLog: false
};
// Configure requirejs
require.config({
paths: {
text: 'Scripts/text',
knockout: '//localhost:2222/Scripts/Plugins/knockout'
},
urlArgs: "bust=" + (new Date()).getTime()
});
// Register knockout components
ko.components.register('template', { require: './Modules/Template/Template' });
// Apply bindings for state
var scope = document.getElementById('app');
ko.applyBindings(appStateViewModel, scope);
Template.js
define(['knockout', 'text!./Template.html'], function (ko, htmlString) {
function TemplateViewModel(params) {
var self = this;
self.Items = ko.observableArray();
$.getJSON("Items")
.done(function (response) {
$.each(response, function (i, item) {
self.Items.push({
Id: item.Id,
Name: item.Name,
Description: item.Description,
Cost: item.Cost,
CategoryName: item.CategoryName
});
});
})
.fail(function (listResponse, status, errorThrown) {
alert(errorThrown);
});
}
// Return component definition
return { viewModel: TemplateViewModel, template: htmlString };
});