当我在Fiddler中传递值{"rajehs","ramesh","ramsgkfhh"}
时,我会在[0]位置获取所有值。我也尝试过使用= {"rajehs","ramesh","ramsgkfhh"}
。
我宣布了这样的方法:
public void Post([FromBody]string[] value)
{
}
答案 0 :(得分:2)
您正在我们的正文中传递JSON对象,而不是数组。使用[]
传递JSON数组:
["rajehs","ramesh","ramsgkfhh"]