sencha touch jsonp 请求
我正在 sencha touch 创建一个测试应用程序,通过 jsonp 请求与其他域进行通信,但每次收到 Uncaught SyntaxError: Unexpected token : 时,我都无法得到响应,我的返回json 绝对完美,没有任何错误
,我也无法更改另一个域中的远程函数,该函数总是返回我 json 对象,没有脚本标记和方法执行,有什么方法可以修复这个 Uncaught SyntaxError:意外的令牌:在上述场景中
I am creating a test application in sencha touch that communicates with some other domain via jsonp request, but i just can't get the response back every time I get a Uncaught SyntaxError: Unexpected token :, my return json is absolutely perfect with no errors at all
also I can't change the remote function in the other domain that always returns me json object no script tag and method execution, is there any way to fix this Uncaught SyntaxError: Unexpected token : in the above scenario
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您的服务器需要在 HTTP 正文中返回类似 Sencha.json.callback1 的内容
,其中 Sencha.json.callback1 是从“callback”查询参数中获取的。
Your server needs to return in the HTTP body something like
where Sencha.json.callback1 is taken from the "callback" query parameter.