1.6のドキュメントも説明していませんが、2.0のドキュメントはいくつかの手がかりを与えます...
詳細を宣言する
var customers = new qx.io.rest.Resource({
create: {
method: "POST",
url: "/customers"
});
ペイロードを配置/投稿するには:
costumers.create({ "surname": "none",
"name": "none",
"email": "someone@example.com",
"description": "nothing",
"address": "Southpole"
});
URLで引数を渡すには:
詳細を宣言する
var customers = new qx.io.rest.Resource({
get: {
method: "GET",
url: "/customers?{args}"
});
と呼び出すとき
var arguments = "arg1=10&arg2=10";
customers.get({arg:arguments});
// this will geneterate the following http://example.com/customers?agr1=10&arg2=10