如何使用remote:true在点击index.html.erb上的链接时显示'show'模板?

时间:2013-11-02 05:44:50

标签: ruby-on-rails ruby-on-rails-3

这看起来非常简单,但不知何故我卡住了,我有一个配置文件脚手架,当用户点击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") %>');

但是当我点击链接时,没有任何反应,我错过了什么?

0 个答案:

没有答案