在jQuery中,我可以通過指定參數data
附加GET參數:添加GET參數q.io.xhr
// sends request to http://example.com?foo=bar&hello=world
$.ajax({
url: 'http://example.com',
method: 'get',
data: {foo: 'bar', hello: 'world'}
})
但是我看不到這樣的qooxdoo documentation選項。當然,我可以手動將參數編碼到url中,但我無法相信這麼大的JavaScript框架無法做到這一點。
也許我錯了,qooxdoo API以某種方式接受GET參數?
'req.setRequestData({FOO: '欄',你好: '世界'});'? – timidboy
http://jsfiddle.net/LV6pX/ – werehuman
@werehuman setRequestData在q.io.xhr上不可用。閱讀文檔:http://demo.qooxdoo.org/2.0.2/website-api/#Xhr – Jaffer