gpt4 book ai didi

c# - ASP.Net MVC 3 - 在 POST 中更改 URL

转载 作者:行者123 更新时间:2023-11-30 17:05:34 25 4
gpt4 key购买 nike

假设我有这样的操作:

[HttpPost]
public ActionResult(MyObject obj)
{
//Do a SQL insert that gets an Id for obj

//Do some long-running operation in the background - don't wait for it to finish

//Return a report of the object
return View(obj);
}

有没有办法在 POST 之后修改 URL,使其在末尾显示 ?id=1234?执行 GET 有等效的操作(就像用户共享页面一样),我只想显示报告。

最佳答案

您应该使用 RedirectResult 并将用户重定向到新的 URL。

如果你这样做,你就不能将任何东西传递给 View 。

通常的做法是将其存储在 TempData 变量中:

[HttpPost]
public ActionResult(MyObject obj)
{
//Do a SQL insert that gets an Id for obj

//Do some long-running operation in the background - don't wait for it to finish
TempData["obj"] 0 obj;
//Return a report of the object
return new RedirectResult();
}

您不能以编程方式更改来自服务器的 URL。如果您不想使用重定向,您可以在页面加载后使用 JavaScript 更改它

关于c# - ASP.Net MVC 3 - 在 POST 中更改 URL,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16450321/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com