刚开始学习loopj。如何将url上的long {id}作为字符串传递?
我在客户端有这样的方法,
public static void getAllByIdForSpinner(Context context, String url, Header[] headers,
RequestParams params, AsyncHttpResponseHandler responseHandler) {
client.get(context, getAbsoluteUrl(url), headers, params, responseHandler);
}
和主要活动
myRestClient.getAllByIdForSpinner(MainActivity.this, "ExampleRestService/product/" +id,
headers.toArray(new Header[headers.size()]), null, new JsonHttpResponseHandler()
我试了几件事。但这种方法没有任何效果。