我正在研究Sencha Touch应用程序,我正在学习它,因为我喜欢JavaScript。
这是我的app.js
var App = new Ext.Application({
name: 'My First App',
//BaseURL: 'http://mydomain.com/testing/first/services/',
launch: function() {
this.views.viewport = new this.views.Viewport();
// this.BaseURL = "http://mydomain.com/testing/first/services/";
}
});
这是我的商店之一。
var newsStore = new Ext.data.Store({
model: 'News',
sorters: [{
property: 'PostedOn',
direction: 'DESC'
}],
proxy: {
type: 'ajax',
url: 'http://mydomain.com/testing/first/services/News.php',
reader: {
type: 'xml',
root: 'News',
record: 'New'
}
},
getGroupString: function(record) {
if (record && record.data.PostedOn) {
return record.get('PostedOn').toDateString();
}
else {
return '';
}
},
autoLoad: true
});
现在的问题是,如果我可以在整个应用程序中创建一个全局变量?它被命名为 BaseURL ,我可以在所有数据存储中使用它,当需要更改它时,我只需更改它以反映整个应用程序。
我需要知道两件事。
答案 0 :(得分:20)
我建议将自定义全局变量添加到应用程序命名空间,如下所示:
Ext.application({
name: 'MyApp',
launch: function() { },
apiToken: 'foo'
});
这样,您可以在应用程序启动后访问这些自定义变量:
MyApp.app.apiToken
它也适用于功能:
Ext.application({
name: 'MyApp',
launch: function() { },
apiToken: 'foo',
getApiToken: function() { return this.apiToken; }
});
答案 1 :(得分:2)
您可以像没有Sencha一样声明全局变量:
var BaseURL = "http://mydomain.com/testing/first/services/";
然后使用它:
proxy: {
type: 'ajax',
url: BaseUrl + 'News.php',
reader: {
type: 'xml',
root: 'News',
record: 'New'
}
}
编辑:
如果您想将其声明为App实例的成员,请执行以下操作:
var App = new Ext.Application({
name: 'My First App',
launch: function() {
this.views.viewport = new this.views.Viewport();
this.BaseURL = "http://mydomain.com/testing/first/services/";
}
});
然后:
proxy: {
type: 'ajax',
url: App.BaseUrl + 'News.php',
reader: {
type: 'xml',
root: 'News',
record: 'New'
}
}
答案 2 :(得分:1)
经过一些sencha更新后,我们可以做到:
var App = Ext.application({
name: 'Myapp',
serviceUrl: 'https://example',
launch: function() {
}
});
Ext.Ajax.request({
url: Myapp.app.servideUrl,
withCredentials: true,
useDefaultXhrHeader: true,
method: 'post',
scope: this,
params: {
cmd: 'connect',
id: login,
password: pass,
version: 1
},
success: function (response) {
var result = Ext.JSON.decode(response.responseText);
if (result.result.status === 'connected'){
this.loginSucess(result);
}else{
this.loginFail(result);
}
},
failure: function (response) {
this.loginFail();
}
});
答案 3 :(得分:0)
This回答,可以帮到你。 <是/> 特别是如果,你想把params传递给商店。