如何使用Fiddler在post方法中将值传递给字符串数组?

时间:2014-12-26 08:36:00

标签: c# web-services rest post fiddler

当我在Fiddler中传递值{"rajehs","ramesh","ramsgkfhh"}时,我会在[0]位置获取所有值。我也尝试过使用= {"rajehs","ramesh","ramsgkfhh"}

我宣布了这样的方法:

    public void Post([FromBody]string[] value)
    {

    }

1 个答案:

答案 0 :(得分:2)

您正在我们的正文中传递JSON对象,而不是数组。使用[]传递JSON数组:

["rajehs","ramesh","ramsgkfhh"]