关于bug的合集

Posted newlore

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了关于bug的合集相关的知识,希望对你有一定的参考价值。

1、You have an error in your SQL syntax; check the manual that corresponds to your mysql server version for the right syntax to use near ‘,‘ at line 1

答:可能控制层 Controllers 接口 未加[FromUri]

例如:

[HttpGet]
public WebApiResult GetBatchDeliveryList([FromUri]BatchDeliverySearchDto search)
{
var pagedList = service.GetBatchDeliveryList(search);
return new WebApiResult<object>() { Data = pagedList.GetPagedListDto() };
}






以上是关于关于bug的合集的主要内容,如果未能解决你的问题,请参考以下文章