0

在 jQuery 中,我可以通过指定参数来附加 GET 参数data

// sends request to http://example.com?foo=bar&hello=world
$.ajax({
    url: 'http://example.com',
    method: 'get',
    data: {foo: 'bar', hello: 'world'}
})

但是我在qooxdoo 文档中看不到这样的选项。当然我可以手动将参数编码成url,但是我不敢相信这么大的javascript框架不能做到这一点。

也许我错了,qooxdoo API 以某种方式接受 GET 参数?

4

1 回答 1

0

这目前不受支持,因为我们希望 XHR 实现非常接近规范 [1],正如您在 API 文档 [2] 中看到的那样。但这可能是将来添加的一个很好的功能!

于 2012-09-05T14:22:43.110 回答