PostMan Post方式传递数组数据参数 OK_go

服务器是PHP 写的

PostMan Post方式传递数组数据参数 OK_go_第1张图片

需要 数组字段key + [0] ,如果有多个值从0 往下排 。

 

OkGo.post(ConstantUrls.CREATE_GOODS)
                .tag(this)
                .headers("Access-Token", (String) helper.getSharedPreference(helper.access_token, ""))
                .headers("Content-Type", "application/x-www-form-urlencoded")
                .params("activity_id", id)
                .params("goods_name", name)
                .params("description", des) 
                .params("images", sb2.toString())
                .params("sku_store_list[0]", GsonUtil.GsonToJson(ku))
                .execute(new ZHYCCallBack(this) {
                    @Override
                    public void onSuccessz(Response response) {
                        LogUtils.e(" ------------- 创建成功!!");

                        String responseData = getResponseData(response);
//                        LoginBean loginBean = GsonUtil.GsonToBean(responseData, LoginBean.class);

                      
                    }

                    @Override
                    public void onError(Response response) {
                        handleError(response);
                    }
                });

post模拟数据传递,需要再body中写 key value 的值 。

 

 

 

 

你可能感兴趣的:(form-data,请求,okhttp)