Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
部分视图中的提交按钮正在调用主视图的 POST 操作方法。我只想调用与局部视图相关的 POST 操作方法,而不是主视图。
鉴于这些症状,这很可能是因为您已将局部视图放置在<form>呈现此局部视图的现有元素内。例如
<form>
<form> @Html.RenderAction(...) </form>
您正在渲染另一个表单,并且它正在冒泡到顶部的父表单。