0

私は qooxdoo で REST サービスを使用していますが、実験的なクラスhttp://manual.qooxdoo.org/1.6/pages/communication/rest.htmlがあることがわかりました。

これにより、コミュニケーションを簡単に作成できますが、次の例は見つかりません。

  1. ペイロード (json) を put/post リクエストに渡すにはどうすればよいですか?
  2. www.example.com/customers?arg1=20 のように URL に引数を渡すにはどうすればよいですか?

アドバイスありがとう。

4

1 に答える 1

0

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
于 2012-08-16T08:10:07.283 に答える