如何使用同一视图通过操作实现 CRUD 访问?
如何使用同一视图通过操作实现 CRUD 访问?
class UserController : Controller
{
[ActionName("User")]
[HttpGet]
public ActionResult GetUser() {/* ... */}
[ActionName("User")]
[HttpPost]
public ActionResult PostUser() {/* ... */}
}
我希望这两个操作都使用相同的视图。
是否有一个属性来指定要使用的视图?
How do I implement CRUD access with actions using the same view?
class UserController : Controller
{
[ActionName("User")]
[HttpGet]
public ActionResult GetUser() {/* ... */}
[ActionName("User")]
[HttpPost]
public ActionResult PostUser() {/* ... */}
}
I would like both actions to use the same view.
Is there an attribute to specify what view to use?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以在每个方法的末尾调用 View(""),例如:
You can call View("") at the end of each method, e.g.: