8

我目前有一个显示通知的下拉菜单

<li class="notifications dropdown"> 
  <a class="dropdown-toggle" id="dLabel" role="button" data-remote="true" data-toggle="dropdown" data-target="#" href="/notifications"><i class="icon-user"></i> Notifications</a>
  <ul class="dropdown-menu" role="menu" aria-labelledby="dLabel">
  </ul>
</li>

ul 下拉列表是空的,但是单击链接时,我想用 rails 中的数据填充菜单。

我目前在 notifications.js.erb 中有这个

$(".nav li.notifications .dropdown-menu").remove();
$(".nav li.notifications").append("<%= escape_javascript(render('users/notifications', notifications: @notifications)) %>");

通常我会将下拉链接设置为远程,但由于我使用的是引导程序的下拉列表,因此不会向 notification.js.erb 发送请求。我怎样才能在那里手动调用代码?

4

1 回答 1

6

我会添加 JavaScript 代码来进行调用:

$(document).ready(function() {
    $('#dLabel').click(function() {
        // Only call notifications when opening the dropdown
        if(!$(this).hasClass('open')) {
           $.ajax({
              type: "GET",
              url: "/notifications",
              async: false,
              dataType: "script"
           });
        }
    });
});

您也可以使其异步并暂时将加载图标放入菜单中...

于 2012-10-14T20:47:59.570 回答