9

我做了一个有project模型的应用程序。模型中存储了一些信息,用户可以向project(使用comment模型)添加评论。在项目的显示视图中,我希望用户能够在“信息”部分(包含项目信息)和“评论”部分(包含在项目上写的评论)之间切换。我想使用AJAX. 所以我将有两个按钮:信息和评论。

现在我知道如何根据“远程链接”渲染部分内容,但我还必须找出点击了哪个链接。到目前为止,当单击一个链接时,我可以渲染一个部分,如下所示:

// In show.html.haml

= link_to("Information", :project, :id => "link_one", :remote => true)
= link_to("Comments", :project, :id => "link_two", :remote => true)

#partial_window


// In show.js.haml
$("#partial_window").html("#{j(render("comments"))}")

现在,_comment.html.haml当我单击其中一个链接时,这会呈现部分内容。我需要知道的是如何检查单击了哪个链接,然后呈现适当的 partial:_info.html.haml_comments.html.haml.

在此先感谢您的帮助!

4

1 回答 1

24

像这样的东西应该工作。我们将使用嵌套路由。查看ryan 的截屏视频(有点旧,但可以理解)或这个关于嵌套表单的更新版本(使用相同的原则)。您必须为更新版本付费,但我发现我的 RailsCast 订阅物超所值,每月 9 美元。此外,这里是示例文档

config/routes.rb

resources :projects do
  resources :comments
end

comments_controller.rb

class CommentsController < ApplicationController
  def index
    project = Project.find params[:project_id]
    @comments = project.comments
    respond_to do |format|
     format.html #responds with default html file
     format.js #this will be the javascript file we respond with
    end
  end
end

views/comments/index.js.erb

$('#holderDiv').empty().append('<ul> <%= j render @comments %> </li>')

这使用了一个漂亮的 rails 东西,它会查找comment部分内容并将其呈现给@comments. j 助手转义 javascript 并将渲染的部分插入到append函数中。

views/comments/_comment.html.erb

 <li> <%= @comment.description %> </li>

所以我们现在已经清除#holdingDiv并插入了我们的评论。对于information,也许是这样的:

projects_controller.rb

class ProjectsController < ApplicationController
  def index
    @project = Project.find params[:id]
    respond_to do |format|
      format.html
      format.js
    end
  end
end

views/project/index.js.erb

 $('#holderDiv').empty().append('<%= j render 'information', information: @project.information %>')

views/project/_information.html.erb

<h2>
  <%= information.title %>
</h2>
<p>
  <%= infomration.details %>
</p>

然后,您的远程链接将类似于:

= link_to("Information", @project, :remote => true)
= link_to("Comments", project_comments_url(@project), :remote => true)

我不得不对你的数据结构做一些假设。让我知道我在哪里让你感到困惑。

另外,我确定我有一些错别字,抱歉。我没有对此进行测试,只是想了想。

于 2012-12-19T18:16:50.363 回答