Sencha Touch 2 MVC - 如何实现和使用自定义代理

时间:2012-01-27 11:29:22

标签: sencha-touch sencha-touch-2

this Question我遇到了同样的问题。但是我正在使用Sencha Touch 2,我不知道如何实际使用这个自定义商店。我在模型类中定义了我的REST代理。我如何访问/使用此自定义代理?

proxy: {
    type: 'rest',
    url: 'http://someUrl', 
    reader: {
        type: 'json',
    }
}

1 个答案:

答案 0 :(得分:10)

在Sencha Touch 2中相当简单。这假设你有一个MVC架构。

首先,您建模 - app / model / Image.js

Ext.define('MyApp.model.Image', {
    extend: 'Ext.data.Model',

    // Require your custom proxy
    requires: ['MyApp.proxy.MyCustomProxy'],

    config: {
        fields: ['name'],

        proxy: {
            // set the type of your proxy
            type: 'mycustomproxy'
        }
    }
});

然后定义您的代理 - app / proxy / MyCustomProxy.js

Ext.define('MyApp.proxy.MyCustomProxy', {
    extend: 'Ext.data.proxy.Proxy',

    // Set your proxy alias
    alias: 'proxy.mycustomproxy',

    ...
});