ExtJS 4:没有模型的网格/商店

发布于 2024-11-08 11:29:08 字数 369 浏览 0 评论 0原文

我有几个网格,它们显示的数据并未真正映射到模型,例如统计数据、计数等。它们显示的值是由服务器根据当前登录的用户动态生成的,并且可能与任何数字相关服务器端模型。

针对这些情况设置 ExtJS 模型似乎很愚蠢。他们可能看起来像:

Ext.define('???', {
    extend: 'Ext.data.Model',
    fields: ['name', 'count']
});

这对我来说没有意义。我知道商店的 fields 属性仍然存在,但文档指出它只是为了向后兼容而存在,应该避免。另外,至少在兼容层运行的情况下,控制台会警告不要使用它。

那么针对这些情况的“正确”方法是什么?

I have several grids that display data that doesn't really map to a Model, e.g. statistics, counts, etc. The values they display are dynamically generated by the server based on the currently-logged in user, and could be related to any number of server-side models.

It seems silly to set up an ExtJS Model for these situations. They might look something like:

Ext.define('???', {
    extend: 'Ext.data.Model',
    fields: ['name', 'count']
});

It doesn't make sense to me. I know the fields attribute of the store is still there, but the documentation states it is only really there for backwards compatibility and should be avoided. Plus, at least with the compatibility layer running, there's the console warning against using it.

So what is the "proper" approach for these situations?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

九命猫 2024-11-15 11:29:08

有类似的问题。 Sencha 声称在这种情况下可以使用“fields”属性。
查看此线程:

http://www.sencha.com/forum/showthread.php?136362-Extjs-4-Dynamic-Model/page2" rel="noreferrer"> sencha.com/forum/showthread.php?136362-Extjs-4-Dynamic-Model/page2

在他们的论坛上。

Had a similar problem. Sencha claim that in such a case it's ok to use the 'fields' property.
Check out this thread:

http://www.sencha.com/forum/showthread.php?136362-Extjs-4-Dynamic-Model/page2

on their forum.

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