VFP用POST方式传递JOSN数据 参数值为数组,要怎么传递!
接口地址:https://zbtest.请求方式:post
请求参数:
参数名称 参数说明 请求类型 是否必填写 数据类型
token 令牌 Body 是 String
type 类型(1新增2修改) Body 是 String
form 提交数据 Body 是 Array
Form[“username”] 用户账号 是 String
form[“password”] 密码 是 String
form[“mobile”] 手机号 是 String
请求示列
{
"token": " 要先下载下来TOKEN值 ",
"type": 1,
"form": {
"username": "richad2",
"password": "admin123",
"mobile": "18702599999"
}
}
返回码
状态码 说明
0 成功
1 参数错误
90003 token已过期
90004 用户信息错误(注3)
响应参数
参数名 参数说明 参数类型 是否必有
success 接口请求状态(true成功,false失败) String false
msg 提示 String true
Code 状态码 Number true
data 数据数组 Array false
{
"success": true,
"msg": "创建成功",
"code": 0
}