是否有 Sencha Touch 模型的字段类型列表?

发布于 2024-11-26 22:00:37 字数 147 浏览 0 评论 0原文

是否有 Sencha Touch 模型的可用字段类型列表?
我搜索了文档但找不到类似的东西。

你可以使用“inte”、“string”、“boolean”、“timestamp”,但还有什么?是否存在“时间”、“日期”或“日期时间”以及它们的行为方式如何?

Is there a list of available field types for a Sencha Touch model?
I've searched the docu but couldn't find something like this.

You can use "inte", "string", "boolean", "timestamp" but what else? Is there a "time", a "date" oder a "datetime" and how do they behave?

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

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

发布评论

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

评论(4

蓝海似她心 2024-12-03 22:00:37

虽然花了一下午的时间,但我相信我已经找到了最终的清单。

使用 Field< 创建的 Ext 中的模型成员/a> 类。

如果您单击 输入配置选项,您将看到来自源代码的最终列表。

It's taken a good part of the afternoon, but I believe I've found the definitive list.

Model members in Ext created using the Field class.

If you click on the type config option, you'll be presented with the definitive list from source.

孤蝉 2024-12-03 22:00:37

在 Web 控制台中输入 Ext.data.Types。这是我在 Sencha Touch 2.1 中得到的:

  • AUTO: 对象
  • BOOL: 对象
  • BOOLEAN: 对象
  • DATE: 对象
  • FLOAT: 对象
  • INT: 对象
  • INTEGER: 对象
  • NUMBER: 对象
  • STRING: 对象

Type Ext.data.Types into the web console. This is what I got for Sencha Touch 2.1:

  • AUTO: Object
  • BOOL: Object
  • BOOLEAN: Object
  • DATE: Object
  • FLOAT: Object
  • INT: Object
  • INTEGER: Object
  • NUMBER: Object
  • STRING: Object
阳光①夏 2024-12-03 22:00:37

有关模型数据字段类型,请参阅 Ext.data.Types 的文档。列表
自动、字符串、整数、浮点数、布尔值、日期。

For model data field types, see the documentation for Ext.data.Types. Lists
auto, string, int, float, bool, date.

南渊 2024-12-03 22:00:37

Sencha 需要让这个更容易找到。我终于在 Ext.Component 页面上发现了它。不幸的是,该列表并不完整。它缺少一些类型,包括 datepickerfieldemailfield。要获得完整列表,最好的办法是搜索 Ext.reg( 的源代码(第一个参数是 xtype)。

Sencha needs to make this easier to find. I finally discovered it on the Ext.Component page. Unfortunately, the list there is incomplete. It's missing a bunch of types including datepickerfield and emailfield. Your best bet for a complete list is to search the source code for Ext.reg( (the first argument is the xtype).

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