1

这是我的简单 ajax 代码。

发出了请求,我得到了响应,但我的视图没有用新数据呈现。我得到一个带有新 html 的新页面,我要求渲染它而不是在当前页面中渲染。

控制器 -

    def list
    @users = User.find(:all)
    end

    def show
    respond_to do |format|
    format.html {   render :partial => "ajaxshow" }
    format.js
    end
    end

看法 -

<% @users.each do |c| %>
<%= link_to c.user_id, {:action => :show, :user_id => c.user_id, :remote => true } %>
<% end %>

部分的 -

# cat _ajaxshow.html.erb
<div  align="left" id="user_ajax">
<table width="1000px">
<tr><th>User ID</th><th>First</th><th>Last</th><th>ID</th><th>Email</th></tr>
</table>

日志 -

Started GET "/users/show?remote=true&user_id=someuser" for 10.10.10.10 at 2012-04-17 04:01:09 -0400
Processing by UsersController#show as HTML
  Parameters: {"remote"=>"true", "user_id"=>"someuser"}
  Rendered users/_ajaxshow.html.erb (0.3ms)
Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.0ms)
4

2 回答 2

1

您需要有一个.js.erb用于User控制器操作的文件,该文件将通过调用来format.js调用。

show.js.erb使用中

$('#some_div_id').html($('<%= render :partial => "ajaxshow" %>'))

无论如何,你行动的目的对我来说似乎是模糊的。

于 2012-04-17T08:32:52.767 回答
1

您的 link_to 不会触发 ajax 调用

  <%= link_to c.user_id, {:action => :show, :user_id => c.user_id, :remote => true } %>

先把上面的代码改一下

 <%= link_to c.user_id, {:action => :show, :user_id => c.user_id }, { :remote => true, :method => :get } %>
于 2012-04-17T08:34:28.450 回答