使用 Knockout.js 映射插件使属性在数组中可观察
当我调用 ko.mapping.fromJS(model) 时,它会创建一个空白数组。我正在尝试创建一个具有可观察属性的可观察数组。作为字符串的初始模型变量对象如下所示 "[{"Key":"test","Speeches":[{"Text":"test"}]}]"
。为什么 fromJS 方法返回空数组 []
?
When I call ko.mapping.fromJS(model)
it creates a blank array. I am trying to create an observable array with observable properties. The initial model variable object as a string looks like this "[{"Key":"test","Speeches":[{"Text":"test"}]}]"
. Why is the fromJS method returning an empty array []
?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您的模型采用 JSON(字符串表示形式),那么您需要使用 ko.mapping.fromJSON(model)。
否则,它应该可以正常工作。我知道 Chrome 中 observableArray 上的 console.log 显示 [],所以也许数据就在那里。
以下是显示两种方式且数据有效的示例: http://jsfiddle.net/rniemeyer/PBhG3 /
If your model is in JSON (string representation), then you need to use
ko.mapping.fromJSON(model)
.Otherwise, it should work fine. I know that console.log on an observableArray in Chrome shows [], so maybe the data is there.
Here is a sample that shows both ways and that the data is valid: http://jsfiddle.net/rniemeyer/PBhG3/