EXT--ScriptTagProxy解决跨域json调用

开发者博客www.developsearch.com

 

 

相信很多朋友有时候会调用一些跨域的json,这时候用Ext.data.HttpProxy 就不灵了,这是由于安全方面的原因.Ext也为我们提供了另一个专门跨域调用的类,Ext.data.ScriptTagProxy,下面我们来看看这一个方法如何使用.
我们先来看一段Ext例子里面的代码:
.JS代码如下:

// create the Data Store
   var store = new Ext.data.Store({
       // load using script tags for cross domain, if the data in on the same domain as
       // this page, an HttpProxy would be better
       proxy: new Ext.data.ScriptTagProxy({
           url: 'http://extjs.com/forum/topics-browse-remote.php'
       }),

       // create reader that reads the Topic records
       reader: new Ext.data.JsonReader({
           root: 'topics',
           totalProperty: 'totalCount',
           id: 'threadid',
           fields: [
               'title', 'forumtitle', 'forumid', 'author',
               {name: 'replycount', type: 'int'},
               {name: 'lastpost', mapping: 'lastpost', type: 'date', dateFormat: 'timestamp'},
               'lastposter', 'excerpt'
           ]
       }),

       // turn on remote sorting
       remoteSort: true
   });
   store.setDefaultSort('lastpost', 'desc');

 

开发者博客www.developsearch.com

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值