码迷,mamicode.com
首页 > Web开发 > 详细

ExtJS stores - load JSON only once

时间:2016-01-19 22:14:55      阅读:175      评论:0      收藏:0      [点我收藏+]

标签:

Description

目的是不要每次都加载 json文件,从而加快运行速度。

Code

You could configure your stores with a memory proxy:

store: {
    model: ‘Forum.model.Post‘,
    proxy:{
        type: ‘memory‘
        reader: {
            type: ‘json‘
            root: ‘posts‘
        }
    }
}

Then fetch the data once with an Ext.Ajax.request and load it into each store using the proxy:

Ext.Ajax.request({
    url: ‘../api/json.php‘,
    success: function(response) {
        var result = Ext.JSON.decode(response.responseText);

        store.getProxy().data = result;
        store.load();
        // same procedure for the other stores...
    }
});

Reference

 

ExtJS stores - load JSON only once

标签:

原文地址:http://www.cnblogs.com/yuxiaoqi/p/5143558.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!