我下載了幾個實體一個ajax-request。然後我將它們添加到商店。我需要提交一個類似於ajax-request的更改。如何正確地做到這一點?ExtJS中的嵌套數據
JSON結構:
{
entity1: [],
entity2: [],
entyty3: []
}
success: function(responce) {
var data = Ext.decode(response.responseText);
store1.add(data['entity1']);
store2.add(data['entity2']);
store3.add(data['entity3']);
}
存儲類型在這裏不清楚。它是JsonStore嗎? –
建議用更多細節來描述問題。比如你如何提交,存儲定義等。 –