1

を使用してPOSTパラメータを変更できます

session.setParams(session.getParams(...).putString(...))

ここで、オフセットと制限を渡したいと思います。setGETParams(...)やgetGETParams(...)のような関数はありません。どのようにできるのか?

4

1 に答える 1

1

リクエストがすべて設定されていると仮定すると、次のように追加のパラメーターを追加できます。

// Get the current request parameters
Bundle myRequestParams = myRequest.getParameters();

// Add the additional parameters
myRequestParams.putString("limit", "100");
myRequestParams.putString("offset", "20");

// Update the request parameters
myRequest.setParameters(myRequestParams);
于 2012-12-20T21:46:51.300 に答える