我需要将一些值发布到REST服务。我使用POSTMAN rest客户端进行测试,我可以发布字符串,整数,布尔值来休息服务没有问题。但我无法发布数组值;
我正在使用此参数,此参数正在工作,但数组值除外;
{
"parameters": [
{
"type": "string",
"name": "nameandsurname",
"value": {"string":{ "value": "myname"}}
},
{
"type": "Array/string",
"name": "arrayvariable",
**"value": {"string":{ "value": "value1"}}** This line is not working...
}
]
}
答案 0 :(得分:1)
在Postman中你可以这样发布JSON:
您可以从Postman下载此导出并进行尝试 https://www.dropbox.com/s/ulmoc8n8gmgb076/tests.postman_collection.json?dl=0