我只是試圖更新本地存儲,但內部的Ext.Ajax.request我無法調用this.store.create()。如何在Ajax調用的success:區域內調用this.store.create函數。非常感謝您的幫助。this.store.create不會在ajax內呼叫
login: function(params) {
params.record.set(params.data);
var errors = params.record.validate();
if (errors.isValid()) {
var myMask = new Ext.LoadMask(Ext.getBody(), {msg:"Please wait..."});
myMask.show();
//now check if this login exists
Ext.Ajax.request({
url: '../../ajax/login.php',
method: 'GET',
params: params.data,
form: 'loginForm',
success: function(response, opts) {
var obj = Ext.decode(response.responseText);
myMask.hide();
//success they exist show the page
if(obj.success == 1){
//this doesn't work below
this.store.create(params.data);
this.index();
}
else{
Ext.Msg.alert('Incorrect Login');
}
},
failure: function(response, opts) {
alert('server-side failure with status code ' + response.status);
myMask.hide();
}
});
}
else {
params.form.showErrors(errors);
}
},
什麼是錯誤?你會得到一個JavaScript異常嗎?這可能是一個範圍問題,你的「這個」指針可能並不指向你的想法。此外,文檔提到了商店的添加方法,但不是創建。您使用的是哪種版本的sencha touch? –
即時通訊使用sencha 1.1我想我需要引用商店的完整商店名稱?即:loginDetails.store.create(params.data);那是對的嗎? –