简单的 MVC 问题 MVC 重定向

发布于 2024-10-27 21:06:34 字数 233 浏览 2 评论 0原文

我有一个创建新闻文章的控制器。我想将用户重定向到文章页面,例如:“/article/1”。通常我可以直接抛出 return View("MyAction") 但在这种情况下我需要传递整数。有用于将模型添加到 View 方法调用的重载,但我没有看到任何可以让我实现目标的东西。

最好的方法是什么?

另外,我使用 ViewData 作为成功消息...如果我使用重定向消息,它就不会起作用,那么是否还有更好的方法来做到这一点?

I have a controller that creates a news article. I want to redirect the user to the article's page, something like: "/article/1". Normally I could just throw in return View("MyAction") but I need to pass the integer along in this case. There are overloads for adding a model to the View method call but I don't see anything that will let me accomplish my goal.

What's the best way to do this?

Also, I used ViewData for my success message... if I use a redirect message it isn't going to function so is there a better way to do that too?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

甜宝宝 2024-11-03 21:06:34

我想这就是您可能正在寻找的。

RedirectToAction(new {controller="controllerName", action="article", id=1});

希望这有帮助

I think this is what you might be looking for.

RedirectToAction(new {controller="controllerName", action="article", id=1});

Hope this helps

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文