ExtJS kapmak JSON sonuç

4 Cevap php

Ben PHP cadı JSON yanıt üreten kulüpler bu gibi görünüyor:

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

Ben ExtJS kullanarak bu sonuçları kapmak istiyorum. Bu ben bugüne kadar ne var:

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

Ne ben böyle json sonuç almak için önümüzdeki yazmak zorunda:

var mymessages = jsonData.options;

Ve Mesajlarım Örnek mesaj içermelidir ve bu 2 örnek mesajdır.

Teşekkür ederim.

4 Cevap

Basit bir yaklaşımdır:

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);
    }
  }
});

Yoksa Store'u kullanarak daha Ext-imsi şekilde yapabilirsiniz:

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"));
  });
}

Son yorum adres için bir örnek daha:

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

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

Ben (Dahili tarafından sağlanan değil) bir Array.map ile yapıyor tercih olsa da:

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

success ve failure özelliklerini kullanın:

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
    }
});

Daha fazla bilgi için Ext API dokümanlar bakın

Eğer girdi (XSS saldırıları sakının) doğru olduğundan emin iseniz o zaman sizin komutu ile erişilebilen json sonuç, sizin javascript nesne yapmak için eval () işlevini kullanabilirsiniz:

var mymessages = jsonData.options;

Rene Ext.decode fonksiyonu sayesinde belirttiği gibi ama sonra tekrar, Ext, güzel sizin için bunu yapar

Ext JS 4 için bu örnek keman kontrol. http://jsfiddle.net/mrigess/e3StR/

Ext 4 itibaren Ext.JSON.encode() ve Ext.JSON.decode() kullanır; Dahili kullanım sırasında 3 Ext.util.JSON.encode() ve Ext.util.JSON.decode()