简单的 MVC 问题 MVC 重定向
我有一个创建新闻文章的控制器。我想将用户重定向到文章页面,例如:“/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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我想这就是您可能正在寻找的。
希望这有帮助
I think this is what you might be looking for.
Hope this helps