我正在尝试为我的学校项目构建一个简单的用户设置功能 我已经创建了这样的数据模型:
Ext.define('Urlopy.Model.UserPreferences', {
extend : 'Ext.data.Model',
idProperty : 'userID',
fields : [{
name : 'userID',
type : 'string'
}, {
name : 'admin',
type : 'bool'
}]
});
和这样的商店:
Ext.define('Urlopy.Store.UserPreferences', {
extend : "Ext.data.Store",
autoLoad : false,
autoSync : true,
batch : false,
proxy : {
type : 'ajax',
sortParam : undefined,
startParam : undefined,
pageParam : undefined,
limitParam : undefined,
noCache : false,
headers : {
"Content-Type" : "application/json; charset=utf-8"
},
api : {
read : 'services/UserPreferences.asmx/Get',
update : 'services/UserPreferences.asmx/Update'
},
reader : {
type : 'json',
root : 'd.data'
},
writer : {
type : 'json',
encode : false,
writeAllFields : true,
root : 'data'
}
},
model : 'Urlopy.Model.UserPreferences'
});
在我的应用程序中,当用户登录时,我想获得他的偏好。
我有这样的功能:
onLogin : function() {
this.createGlobalStores();
this.userPreferenceStore.load({
callback : function(r, options, success) {
console.log(r.data)
}
});
},
createGlobalStores : function() {
this.userPreferenceStore = Ext.create("Urlopy.Store.UserPreferences");
},
我想在回调中做的是获取用户ID并显示它,即使使用简单的警报。
现在我所得到的都是未定义的,在firebug中显示。
来自服务器的我的json数据如下所示:
{"d":{"__type":"Urlopy.services.UserPreference","userID":"12445","admin":true}}
我需要能够在该商店调用load方法,并在回调中从模型中获取特定属性。我的商店总有1件商品! (还有另一种方法吗?)
欢迎任何关于为什么不起作用的想法!
修改 我已经改变了我的服务器脚本以返回json:
{"d":{"data":{"userID":"12-44-55","admin":true}}}
这很好用,不需要在对象周围添加额外的[]。
答案 0 :(得分:7)
首先,商店的负载需要一个数组,其次你设置代理的根是错误的。因为你的json中没有d.data对象。简单的修复方法是将json数据编码为包含一个元素的数组,并将该数组的标记设置为“data”......
{"d":[{"__type":"Urlopy.services.UserPreference","userID":"12445","admin":true}]}
并将根设置为d
reader : {
type : 'json',
root : 'd'
}
在回调之后,您将拥有一个记录数组,其中包含一个您可以使用索引0轻松访问的元素
callback : function(records, options, success) {
console.log(records[0].data.userID +" " + records[0].data.admin);
}
修改强>
其他不涉及商店的方法
执行简单的ajax请求,例如:
Ext.Ajax.request({
url: 'services/UserPreferences.asmx/Get',
params: {/*if you want any extra params to be sent*/},
scope: this,
success: function (result) {
var response = Ext.decode(result.responseText);
//this is for your initial json
alert(response.d.userID);
},
failure: function (result) {
alert('something failed')
}
});
我不知道您对数据做了什么,但是例如您可以将其加载到表单中,对于更新方法,您将获得表单的提交选项。可以使用url配置发送数据的位置。