私は knockoutjs を使用していますが、これが私の問題です。子プロパティと子配列を持つオブジェクトがあります。パブリッシャーを製品に追加したいと考えています。複数の製品を追加でき、うまく機能します。パブリッシャーを追加することもできます。デバッグすると、オブジェクトに新しい要素が含まれていることがわかります。ただし、追加された新しいパブリッシャーを表示するために UI が更新されていません。
ここで JSFiddleを作成しました
HTMLは次のとおりです。
<h2>Your Products (<span data-bind="text: products().length"></span>)</h2>
<table>
<thead><tr>
<th>Product name</th><th>Price</th><th> Test Bind Name</th><th></th>
</tr></thead>
<tbody data-bind="foreach: products">
<tr>
<td><input data-bind="value: name" /></td>
<td><input data-bind="value: price" /></td>
<td><div data-bind="text: name"></div></td>
<td>
<a href="#" data-bind="click: $root.addPublisher">Add Publisher</a>
<a href="#" data-bind="click: $root.removeProduct">Remove</a>
</td>
</tr>
<!-- ko foreach: publishers -->
<tr>
<td><input data-bind="value: name" /></td>
<td><input data-bind="value: cost" /></td>
<td><div data-bind="text: name"></div></td>
</tr>
<!-- /ko -->
</tbody>
</table>
<button data-bind="click: addProduct, enable: products().length < 5">Add Product</button>
ここにJavaScriptがあります
function Product(name, price) {
var self = this;
self.name = ko.observable(name);
self.price = price;
self.publishers = ko.observableArray([]);
}
function Publisher(name, cost) {
var self = this;
self.name = ko.observable(name);
self.cost = cost;
}
// Overall viewmodel for this screen, along with initial state
function ProductsViewModel() {
var self = this;
// Editable data
self.products = ko.observableArray([]);
// Operations
self.addProduct = function() {
self.products.push(new Product("", ""));
}
self.removeProduct = function(product) { self.products.remove(product) }
self.addPublisher = function(product) {
product.publishers().push(new Publisher("test",""));
}
}
ko.applyBindings(new ProductsViewModel());