gpt4 book ai didi

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

转载 作者:行者123 更新时间:2023-12-03 09:24:29 26 4
gpt4 key购买 nike

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

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

最佳答案

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

首先,你的模型 - 应用程序/模型/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'
}
}
});

然后定义您的代理 - 应用程序/代理/MyCustomProxy.js :
Ext.define('MyApp.proxy.MyCustomProxy', {
extend: 'Ext.data.proxy.Proxy',

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

...
});

关于sencha-touch - Sencha Touch 2 MVC - 如何实现和使用自定义代理,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9032634/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com