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
广告