gpt4 book ai didi

javascript - 如何将 AjaxRequest 的响应添加到存储或将其显示在列表中

转载 作者:行者123 更新时间:2023-11-28 10:01:45 27 4
gpt4 key购买 nike

我有一个 sencha touch 代码,它使用 Ext.Ajax.request 连接到 WebService。在 success 函数中,我希望响应显示在列表中或将其存储在商店中。

请帮我看看该怎么做。下面是我的代码。

  var View = function() {
Ext.getBody().mask('Loading...', 'x-mask-loading', false);
Ext.Ajax.request({
url: 'URL',
method: 'GET',
success: function(response, opts)
{
var obj = Ext.util.JSON.decode(response.responseText);
Ext.getCmp('content').update(response.responseText);
}
});
};

最佳答案

创建一个带有 store 属性的 Ext.List,

myStore = new Ext.data.Store({
model: Ext.regModel('', {

fields: [
{ name: 'id', type: 'int' },
{ name: 'name', type: 'string'},
{ name: 'age', type: 'string'}

]

})
});

myList = new Ext.List({
store: myStore,
itemTpl: '<div>{name}</div>' +'<div>{age}</div>'

});

然后用 Agax 请求的结果填充 myStore 存储。 ajax调用中的onsuccess事件应该如下,

 var jsonData = Ext.util.JSON.decode(response.responseText);
myStore.add(jsonData['myresultlist']);
myStore.sync();

然后确保您从服务器端返回有效的 json,如下所示,

{
"myresultlist": [
{
"id": "1",
"name": "anne",
"age": "21"
},
{
"id": "2",
"name": "jack",
"age": "26"
},
{
"id": "3",
"name": "Tom",
"age": "21"
}
],
"success": "true",
"info": "My Results List!"
}

关于javascript - 如何将 AjaxRequest 的响应添加到存储或将其显示在列表中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9047937/

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