如何在Postman工具中发送参数集合来调用POST方法

时间:2015-02-16 08:42:40

标签: c# asp.net-mvc-4 asp.net-web-api postman

如何将参数作为集合发送以调用POST方法?

我有一个指向POST方法的Web API网址,该方法将集合作为输入参数。

我想使用postman工具调用此方法。

任何帮助都将不胜感激。

由于

1 个答案:

答案 0 :(得分:0)

假设您的webapi方法如下所示:

public void Post([FromBody]IEnumerable<string> values)

您可以像这样使用POSTman

enter image description here

您需要将content-type标头设置为application / json:

enter image description here