1.Retrofit+OKHttp POST JSONArray怎么请求??
1 回答
富国沪深
TA贡献1790条经验 获得超9个赞
/* 添加评论 */
@POST("api/Comment")
@Headers({"Content-Type: application/json;charset=UTF-8"})
Observable<ApiResponseBean> postComment(@Body RequestCommentBean commentBean);
new Retrofit.Builder()
.baseUrl(API_BASE_URL)
.addConverterFactory(GsonConverterFactory.create())
直接用gson,把实体自动转json然后上传吧。
添加回答
举报
0/150
提交
取消