使用 Knockout.js 映射插件使属性在数组中可观察

发布于 2024-12-02 15:17:06 字数 189 浏览 0 评论 0原文

当我调用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

后eg是否自 2024-12-09 15:17:06

如果您的模型采用 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/

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文