我对这个代码片段有点困惑。我在 httpPost 操作中有以下内容
if(returnUrl.StartsWith("/AssetResearch/InvestorApproval"))
{
return RedirectToAction("InvestorApproval", "AssetResearch");
}
但我的代码每次都进入我的 index() 操作。为什么会发生这种情况?RedirectToAction 不应该触发我注意到的动作吗?
编辑:是的,它在 if 语句中。