ExtJS grab JSON result

2022-08-30 22:54:08

我正在从PHP女巫生成JSON响应,如下所示:

{ done:'1', options: [{ message:'Example message'},{message:'This is the 2nd example message'}]}

我想使用ExtJS获取这些结果。这是我到目前为止所拥有的:

Ext.Ajax.request({
    loadMask: true,
    url: 'myfile.php',
    params: {id: "1"}
});

接下来我必须写些什么才能得到这样的json结果:

var mymessages = jsonData.options;

并且 mymessages 应包含示例消息,这是第 2 个示例消息。

谢谢。


答案 1

简单的方法:

Ext.Ajax.request({
  loadMask: true,
  url: 'myfile.php',
  params: {id: "1"},
  success: function(resp) {
    // resp is the XmlHttpRequest object
    var options = Ext.decode(resp.responseText).options;

    Ext.each(options, function(op) {
      alert(op.message);
    }
  }
});

或者,您可以使用商店以更外延的方式执行此操作:

var messages = new Ext.data.JsonStore({
  url: 'myfile.php',
  root: 'options',
  fields: [
    {name: 'text', mapping: 'message'}
  ],
  listeners: {
    load: messagesLoaded
  }
});
messages.load({params: {id: "1"}});

// and when loaded, you can take advantage of
// all the possibilities provided by Store
function messagesLoaded(messages) {
  messages.each(function(msg){
    alert(msg.get("text"));
  });
}

再举一个例子来解决最后一条评论:

var messages = [{title: "1"},{title: "2"},{title: "3"}];

var titles = msg;
Ext.each(messages, function(msg){
  titles.push(msg.title);
});
alert(titles.join(", "));

虽然我更喜欢使用Array.map(Ext不提供)来做):

var text = messages.map(function(msg){
  return msg.title;
}).join(", ");
alert(text);

答案 2

使用成功失败属性:

Ext.Ajax.request({
    loadMask: true,
    url: 'myfile.php',
    params: {id: "1"},
    success: function(response, callOptions) {
       // Use the response
    },
    failure: function(response, callOptions) {
       // Use the response
    }
});

有关更多详细信息,请参阅 Ext API 文档