public class GoToOtherController : Controller
{
public ActionResult Index()
{
var vm = new GetValueFromOtherViewModel
{
Value="123"
};
TempData["GetValueFromOther"] = vm;
return RedirectToAction("Index", "GetValueFromOther");
}
}
public class GetValueFromOtherController : Controller
{
public ActionResult Index()
{
var v = TempData["GetValueFromOther"] as GetValueFromOtherViewModel;
return Json(v.Value,JsonRequestBehavior.AllowGet);
}
}
public class GetValueFromOtherViewModel
{
public string Value { get; set; }
}
参考资料
https://stackoverflow.com/questions/44958888/redirect-in-a-net-api-action-filter