qooxdoo json/请求传输方法
我尝试通过 GET 向我的服务器发送请求,但 qooxdoo 将请求作为选项发送。有什么办法可以改变这种行为吗?
我尝试使用 qx.data.store.Json (url) 和 qx.io.remote.Request (url, "GET", type) 但两种情况下的结果相同。
我的qooxdoo版本是1.0.1,浏览器是FF 3.5.6和Chromium 5.0.361。
I try to send a request to my server via GET, but qooxdoo sends request as OPTIONS. Is any way to change this behaviour?
I try to use qx.data.store.Json (url) and qx.io.remote.Request (url, "GET", type) but result is same in both cases.
My version of qooxdoo is 1.0.1, browsers are FF 3.5.6 and Chromium 5.0.361.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这很可能是由于跨浏览器限制造成的问题。尝试使用 JSONP 存储并将您的数据作为 JSONP 传递以解决该问题。
It is most likely a problem due to cross browser restrictions. Give the JSONP store a try and deliver your data as JSONP to get rid of that problem.
我认为这是因为我尝试从 file:/// 发送跨域请求到 http:// 。
如果我将测试应用程序部署到服务器 - 它工作正常。
I think this is because I try to send cross-domain request from file:/// to http://.
If I deploy a test application to server - it works fine.