这就是正在发生的事情,我有一个列表,如果我使用商店中的数据属性对数据进行硬编码,但是当我尝试使用代理时没有显示任何内容...代理设法发送数据&从服务器接收数据,但列表仍拒绝显示任何内容......
这是观点:
Ext.define('MyApp.view.myListView', {
extend: 'Ext.List',
xtype: 'myListView',
requires: ['MyApp.store.myListStore'],
config: {
title: 'American Companies',
grouped: false,
itemTpl: '{company} {contact}',
store: 'myListStore',
onItemDisclosure: true
}});
模特:
Ext.define('MyApp.model.myListModel', {
extend: 'Ext.data.Model',
config: {
fields: ['company', 'contact']
}
});
商店:
Ext.define('MyApp.store.myListStore', {
extend: 'Ext.data.Store',
requires: ['MyApp.model.myListModel', 'MyApp.proxy.myListProxy'],
config: {
model: 'MyApp.model.myListModel',
proxy: 'searchProxy',
autoLoad: true,
grouper: {
groupFn: function (record) {
return record.get('contact').substr(0, 1);
}
}
}
});
代理:
Ext.define('MyApp.proxy.myListProxy', {
extend: 'Ext.data.proxy.Ajax',
alias: 'proxy.searchProxy',
method: 'POST',
headers: {
'Accept': 'application/json',
'Content-Type': 'application/json'
},
callbackKey: 'callback',
type: 'json',
config: {
model: 'MyApp.model.myListModel',
url: '/myUrl that works',
reader: {
type: 'json',
rootProperty: 'data' // E.g. {results: [{id: 123, description: 'some text'}, {...}]},
}
},
read: function (operation, callback, scope) {
Ext.Ajax.request({
url: '/myUrl that works',
//success: passFn, // function called on success
failure: failFn,
jsonData: {
"data": {
"fields": ["company", "contact"],
}
}
});
},
filterParam: undefined,
/**
* NOTE: so I can add other params as I needed the params for a search request
* You could use extraParams instead
*/
buildRequest: function(operation) {
var request = this.callParent(arguments);
var params = request.getParams();
// var searchRequest = getSearchRequest(); // helper method
// if (searchRequest) {
// Ext.apply(params, searchRequest);
// }
return request;
}
});
function failFn(msg) {
Ext.Msg.alert('Ajax Error', msg);
}
答案 0 :(得分:2)
将您的read
覆盖更改为以下 -
read: function (operation, callback, scope) {
var that = this;
Ext.Ajax.request({
url: 'yout_url_here',
success: function(response,request){
var receivedData = Ext.JSON.decode(response.responseText.trim());
operation.setResultSet(Ext.create('Ext.data.ResultSet', {
records: receivedData.data,
total : receivedData.data.length
}));
operation.setSuccessful();
operation.setCompleted();
if (typeof callback == "function") {
callback.call(scope || that, operation);
}
},
failure: failFn,
jsonData: {
"data": {
"fields": ["company", "contact"]
}
}
});
},
根据读取方法的文档 -
执行给定的读取操作。如果您在自定义代理中覆盖此方法,请记住在完成操作后始终调用提供的回调方法。
所以你需要再次调用该回调。但仅仅称它是不够的。从服务收到的数据需要分配给Ext.data.Operation
。因此,新ResultSet
必须创建并为其分配数据。 这将允许商店将数据分配到列表。如果未设置ResultSet
,则不会加载存储数据。
我尝试使用以下json并且它有效 -
{
"data":[
{
"company":"a",
"contact":"b"
},
{
"company":"a",
"contact":"b"
},
{
"company":"a",
"contact":"b"
},
{
"company":"a",
"contact":"b"
}
]
}
给它一个机会。但是恕我直言,你可能不需要覆盖read
方法。如果要在将接收的数据附加到列表之前处理它,则可能需要此方法。我不知道你是否想要这个。
但上述解决方案对我有用,也适合你。 :)