Extjs - 单个 Json 存储可能吗?
我正在使用带有 Rails 3.0.6 的 ExtJS。 我有一个表格和一个网格面板。例如,表单包含客户详细信息,网格包含特定客户购买的产品详细信息(一对多)。
谁能建议如何将整个数据(表单+网格)作为单个 json 存储而不是 2 个 json 存储发送?
提前致谢 !
I am using ExtJS with rails 3.0.6.
I have a form and a grid panel. For instance, form has customer details and grid contains the product detail purchased by the particular customer ( One - to - many).
Can anyone suggest how to send the entire data ( form + grid) as a single json store instead of 2 json stores?
Thanks in advance !
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
新的 Ext JS 4 具有模型关联,可以解决该问题(http:// /docs.sencha.com/ext-js/4-0/guide/data)
调用 user.orders() 返回一个使用 Orders 模型配置的 Store,因为 User 模型定义了 hasMany 的关联: 'Orders '。
The new Ext JS 4 has Model associations which will solve the problem (http://docs.sencha.com/ext-js/4-0/guide/data)
Calling user.orders() returns a Store configured with the Orders model, because the User model defined an association of hasMany: 'Orders'.