ASP.NET重新加载(重定向)视图,而无需更改Chrome的后退按钮顺序
我可以以某种方式重定向或重新加载页面,而无需在后退按钮队列(或 JS 中的 History.back() )中添加条目吗?
目前,我使用“RedirectToAction()”作为 Post 的返回值来保存数据。
public virtual ActionResult NotizAktualisieren(long id, string notiz)
{
var data = Client.Get<TestlaufAusfuehrung>(id);
data.Notiz = notiz;
Client.Put(data);
return RedirectToAction(nameof(Ergebnisse), new { id });
}
Firefox 似乎会自动忽略相同的条目,我能为 chrome 做什么?
Can I somehow redirect or reload the page without an entry in the back button queue (or history.back() in JS)?
Currently, I'm using "RedirectToAction()" as the return value for a Post to save data.
public virtual ActionResult NotizAktualisieren(long id, string notiz)
{
var data = Client.Get<TestlaufAusfuehrung>(id);
data.Notiz = notiz;
Client.Put(data);
return RedirectToAction(nameof(Ergebnisse), new { id });
}
Firefox seems to automatically ignore same entries, what can I do for chrome?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论