我有一个ASP.NET Web API应用程序,它将数据插入到数据库中,数据源是其他一些外部应用程序。
我注意到,当用户在值中包含双引号时,他正在传递应用程序给出了错误,我试图通过使用提琴手传递值来发布帖子,然后出现以下错误...
“在解析值后遇到意外字符”
我试图在控制器中的方法上设置断点,但是未命中控制器,并且提琴手给出了以上错误。
我的控制器代码如下
[Route("")]
[HttpPost]
public HttpResponseMessage insertCustDets(PrivateCustomer pCust)
{
}
this is what i tried to pass from the fiddler
{
"cust_response" : "test reponse "from" customer"
}