我必须更改我的控制器来处理 2 个不同的查询字符串,但参数数量相同,所以看起来我不能有 2 个名称和参数数量相同的函数:
错误
The current request for action 'FollowUp' on controller type 'ContactController' is ambiguous between the following action methods:
那么我该怎么做呢?
* String #1 string,int * ?contacted=true&id=7889876
字符串 #2 字符串,字符串 ?contacted=true&pid=AWRE-9876-POKJ-112WQ
电流控制器
[HttpGet]
public ActionResult FollowUp(string contacted, int id) {}
谢谢!