查看代码:
$.post('@Url.Action("SetPlayers", "Game")', { name : t });
控制器代码:
public class GameController : Controller
{
[HttpPost]
public ActionResult SetPlayers(string name)
{
// some code...
return RedirectToAction("Some Action");
}
}
当我在方法 SetPlayers 上设置停止点时,方法收到变量并且所有工作但不重定向到操作。我怎样才能改变它?