如何使用Ext js Ajax来使用webservice

时间:2014-11-07 02:26:00

标签: ajax web-services extjs extjs4 extjs4.1

您好我正在尝试访问Google地图网络服务,而代码段是

      Ext.Ajax.request({
                url:"https://maps.googleapis.com/maps/api/timezone/json",
                    method:"GET",
                    cors:true,
                params:{
                         location:"39.6034810,-119.6822510",
                         timestamp:"1331161200"
                       },
                success:function(response){
                       },
                failure:function(){
                        alert("failure");
                       }


            });

但是当我开始运行时,我收到错误

阻止跨源请求:同源策略禁止在https://maps.googleapis.com/maps/api/timezone/json?_dc=1415326803777&location=39.6034810%2C-119.6822510&timestamp=1331161200读取远程资源。这可以通过将资源移动到同一域或启用CORS来解决。

如错误描述中所述,我已经在我的ajax请求中启用了CORS,我仍然面临着这些问题。

请帮帮我。