这看起来非常简单,但不知何故我卡住了,我有一个配置文件脚手架,当用户点击index.html.erb上的配置文件时,我希望配置文件在同一页面上打开而不是转到/ profile / 1
index.html.erb中的
我添加了
<div id="show_profile">
...
<td><%= link_to profile.name, profile, remote: true, :id => "show_profile" %></td>
...
</div>
在profile_controller.rb
中我添加了
def index
...
format.js
end
我还添加了show.js.erb以及以下代码
$('#show_profile').('<%= j render("show") %>');
但是当我点击链接时,没有任何反应,我错过了什么?