收到httpResponse后如何在Ext.Store中存储数据

时间:2012-10-15 20:42:52

标签: javascript sencha-touch

我正在使用sencha touch编写这个Android应用程序。在收到httpRequest响应后,如何在Ext.Store中存储数据。

var result = new XMLHttpRequest();
result.onreadystatechange = function(){
var respXml = result.responseXML;
//store this result in Ext.store

}

result.open("POST",Uri,true);
result.setRequestHeader("Content-type","application/x-www-form-urlencoded");
result.send(restbody);

1 个答案:

答案 0 :(得分:0)

我明白了。我只是用

var id = result.responseText.split('something');

然后保存到记录中

var record = Ext.create('model',{id:id... });


store.add(record);