I am using the containerless flow control in ko 2.0. When I update an item in my observableArray it is not updating the UI. I am updating the array like this:
this.editFormHost = function (formHost) {
...
formHost.HostName = newHostName;
this.formHosts[index] = formHost;
}
我认为,它没有更新,因为按指数更新阵列并没有在科内提出任何内容。 http://knockoutjs.com/documentation/observableArrays.html。 文件认为,没有办法更新一个标的,而该标的又将更新。 还是存在?