如何在sencha 2.0中向服务器发送jsonp请求

时间:2013-05-14 08:30:40

标签: sencha-touch

我会反复收到此错误

Uncaught SyntaxError:意外的令牌:ajax.php

  

{“error”:“服务器错误< / b>:方法file_get_contents无法打开请求正文!”}

Ext.data.JsonP.request({

                   url: 'http://yaksee.com/facebook/ajax.php',
        callbackKey: 'callback',
        params: {

                           format: 'json',


        },
        success: function(result) {





            if (result) {

        alert('success');

                     alert(result);

            } else {
                Ext.Msg.alert('Error', 'There was an error retrieving the weather.');
            }


        }
    });
}},

2 个答案:

答案 0 :(得分:0)

查看有效的示例:http://docs.sencha.com/touch/2.1.1/#!/api/Ext.data.JsonP

我将其更改为您的网址,并且它已停止在此fiddle中工作,因此它似乎与webservice有问题,或者它需要更多数据来发出请求,因为它返回HTTP 200状态但有一些自定义错误消息< / p>

答案 1 :(得分:0)

您必须禁用浏览器的网络安全性

然后就可以了