标签: android android-async-http http-request-parameters
我使用aync http lib发出请求,我需要将一些数据发布到服务中,其中包含一个布尔参数。
但布尔参数没有放在我的参数中。
是不是可以像这样在RequestParams中放置一个布尔值?
RequestParams params = new RequestParams(); params.put("comment", comment); params.put("extra", false);