我目前有一个显示通知的下拉菜单
<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 发送请求。我怎样才能在那里手动调用代码?