我在控制器中有一个动作,它返回一个只包含一条消息的类
public Result UpdateTestCaseExecution(string appSecret, string appKey)
{
Result result = new Result();
try.....
}
问题在于路由这是我所做的路线,但它没有被击中
routes.MapRoute(
name: "UpdateTestCaseExecution",
url: "{controller}/{action}/{appsecret}/{appkey}",
defaults: new { controller = "Dynamic", action = "UpdateTestCaseExecution", appsecret = UrlParameter.Optional, appkey = UrlParameter.Optional }
);