0
在教程enter link description here他們只顯示此:如何使用Qooxdoo的商店通過POST請求ajax響應?
var url = "http://api.twitter.com/1/statuses/public_timeline.json";
this.__store = new qx.data.store.Jsonp(url, null, "callback");
但我需要用我自己的服務器進行通信,所以我做了一些改變:(url和JSONP以JSON)
var url = "http://127.0.0.1:8000/";
this.__store = new qx.data.store.Json(url);
但我需要能夠在一定的信息發送到服務器時,店裏做出這樣的要求:
{serviceToUseOnServer: 'articles', argument1: 'xxx'}
這就像一個POST reque st,但我真的不知道如何使用qooxdoo的Store模型將數據發送到服務器。請不要告訴我使用GET並將所有數據編碼到一個url中。
交叉後從郵件的Qooxdoo列表:http://qooxdoo.678.n2.nabble.com/How-to-use-Qooxdoo-s-Stores-to-request- an-ajax-response-with-a-POST-td7312461.html – ThomasH 2012-02-23 22:44:07
謝謝我很快就會測試,請在這裏作爲回答接受,如果它工作 – 2012-02-24 09:03:14
(它的工作原理,謝謝) – 2012-02-24 11:41:26