0
在My Reserve ApiController
中,我需要在BankRedirect動作的路徑中使用字符串Url.Route
,但它不起作用。如何從另一個動作中找到api動作路徑
public string GoToBank(string token, string username)
{
string path Url.Route("BankRedirect", new { controller = "Reserve"} , new { userId = "" }))
return path;
}
[Route("BankRedirect")]
[HttpPost]
[BasicAuthenticationFilter]
public async Task<UpdateResult<string>> BankRedirect([FromBody]string userId)
{
}
「儲備」 是我的控制器的路線 - [RoutePrefix(」!保留「)] 公共類ReserveController:ApiController –