如何使用库Android异步Http客户端将boolean作为参数发送?

时间:2014-09-02 19:10:02

标签: android android-async-http http-request-parameters

我使用aync http lib发出请求,我需要将一些数据发布到服务中,其中包含一个布尔参数。

但布尔参数没有放在我的参数中。

是不是可以像这样在RequestParams中放置一个布尔值?

    RequestParams params = new RequestParams();
    params.put("comment", comment);
    params.put("extra", false);

0 个答案:

没有答案