sencha touch jsonp 请求

发布于 2025-01-06 12:50:15 字数 268 浏览 0 评论 0原文

我正在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

内心荒芜 2025-01-13 12:50:15

您的服务器需要在 HTTP 正文中返回类似 Sencha.json.callback1 的内容

Sencha.json.callback1({example:'data'});

,其中 Sencha.json.callback1 是从“callback”查询参数中获取的。

Your server needs to return in the HTTP body something like

Sencha.json.callback1({example:'data'});

where Sencha.json.callback1 is taken from the "callback" query parameter.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文