MVC3 中的 self ajax 部分视图

发布于 2024-12-08 00:27:25 字数 405 浏览 1 评论 0原文

我在 ID 为“评级”的 div 中有部分视图。所以我在同一个局部视图中有一个 ajax 链接。因此,当我单击链接时,它会更新一次,如果我第二次单击链接,它会加载 div 两次,单击三次会加载多次。

有人有同样的问题吗?

<div class="rating"> 
  @Ajax.ActionLink("Flag this review as inappropriate", "CourseRatingFlag", "Content", new { cID = Model.courseRatings[index].crid}, new AjaxOptions() {  HttpMethod = "POST",TargetId="rating" })
some content...
  </div>

I have a partial view inside a div with id 'rating'. So I have a ajax link inside the same partial view. So when I click on the link its updating one time and if i click the link second time, its loading the div two times and clicking three times load multiple times.

Anybody have the same issue?

<div class="rating"> 
  @Ajax.ActionLink("Flag this review as inappropriate", "CourseRatingFlag", "Content", new { cID = Model.courseRatings[index].crid}, new AjaxOptions() {  HttpMethod = "POST",TargetId="rating" })
some content...
  </div>

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

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

发布评论

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

评论(1

衣神在巴黎 2024-12-15 00:27:25

有一个类似的问题这里

就我而言,我解决了将目标 div 从部分视图中定位出来的问题。

There is a similar question here.

In my case, I resolved it locating the target div out of the partial view.

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