Ext Js 状态示例提供吗?
谁能告诉我 Ext JS 提供程序的示例,特别是如果它打算使用任何 HTML 5 存储机制。
谢谢。
Can anyone tell me sample of Ext JS provider, a specially if it intends to use any HTML 5
storage mechanism.
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Ext.state.Provider
是状态提供程序实现的抽象基类。当前版本的 ExtJS 只有一个存储提供程序,即您可以通过继承 Provider 类来创建您的存储提供程序并实现 HTML 5 存储机制。下面是一个可能的框架代码:
注意:此代码并不完整,也未经过测试,在执行之前需要更多逻辑。这可以作为起点。
Ext.state.Provider
is an abstract base class for state provider implementations. The current version of ExtJS has just one storage provider namely CookieProvider.You can create your on storage provider by inheriting the Provider class and implement HTML 5 storage mechanism. Here is a possible skeleton code:
Note: This code is not complete, nor tested and requires more logic before being executed. This can be used as a starting point.