- Sencha Touch 指南
- Sencha Touch - 主页
- Sencha Touch - 概览
- Sencha Touch - 环境
- Sencha Touch - 命名约定
- Sencha Touch - 架构
- Sencha Touch - MVC 说明
- Sencha Touch - 第一个应用
- Sencha Touch - 构建应用程序
- Sencha Touch - 迁移步骤
- Sencha Touch - 核心概念
- Sencha Touch - 数据
- Sencha Touch - 主题
- Sencha Touch - 设备配置文件
- Sencha Touch - 依赖项
- 环境检测
- Sencha Touch - 事件
- Sencha Touch - 布局
- Sencha Touch - 历史记录和支持
- Sencha Touch - 上传和下载
- Sencha Touch - 视图组件
- Sencha Touch - 封装
- Sencha Touch - 最佳实践
- Sencha Touch 有用资源
- Sencha Touch - 快速指南
- Sencha Touch - 有用资源
- Sencha Touch - 讨论
Sencha Touch - 代理
代理的基类是 Ext.data.proxy.Proxy。模型和存储会使用代理来处理模型数据的加载和保存。
有两种类型的代理 −
- 客户端代理
- 服务器代理
客户端代理
客户端代理包括内存和本地存储,它们会使用 HTML5 本地存储。
服务器代理
服务器代理会使用 Ajax、Json 数据以及 Rest 服务来处理来自远程服务器的数据。代理可以写入模型并在任意位置存储。
Ext.create('Ext.data.Store', { model: 'StudentDataModel', proxy : { type : 'rest', actionMethods : { read : 'POST' // Get or Post type based on requirement }, url : 'restUrlPathOrJsonFilePath', // here we have to include the rest URL path which fetches data from database or Json file path where the data is stored reader: { type : 'json', // the type of data which is fetched is of JSON type root : 'data' }, } });
sencha_touch_data.htm
广告