在 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 参数?