仅重新加载部分视图 [ASP.NET MVC]
我有一个表单“Create”实现了与 post 方法“Create”相关的部分视图,如何在触发 POST 方法时重新加载此部分视图,而不重新加载包含我的部分的所有页面
I have a form "Create" implemented an a partial view associated with post method "Create",how to reload just this partial view when firing POST method, without reloading all the page containing my partial
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您提交整个表单,则需要再次呈现整个页面。
不过,您可以发送 AJAX 请求并仅返回部分视图。然后,您可以用新内容替换 DOM 的一部分。
If you submit the whole form than you need to render the whole page again.
You can send the AJAX request though and bring back only the partial view. You can then replace the part of the DOM with the new content.