ruby-on-rails – Rails – 通过ajax显示索引和show动作的结果

我有一个非常简单的Post资源,有两个动作,索引和显示.我的模板包含一个侧栏,其中包含指向每个帖子的链接.我希望侧边栏链接通过ajax显示内容(即“show”操作的结果)

我知道有很多excellent tuts向您展示如何创建一个用ajax提交的表单,但这次我想用它来显示我的索引的内容显示没有页面引用的动作

.是否有任何体面的教程提供如何做到这一点的提示

我想我需要创建一个show.js.erb文件,并告诉我的索引操作响应js但我有点陷入困境.我不知道在控制器的show动作或show.js.erb中放什么 – 想象我需要做什么有点困难

PS – 使用rails 3.0.7,jquery-1.5

解决方法

有了这个工作,它最终非常简单.

第1步 – 添加:remote =>对侧栏中的链接为true

#application.html.haml
%nav#sidebar
  - for post in @posts
    = link_to post.title,post_path,:remote => true
%div#main
    = yield

第2步 – 告诉你的控制器在show动作上回应JS

def show
  @post = Post.find(params[:id])
  @posts=Post.all # needed for sidebar,probably better to use a cell for this
  respond_to do |format|
    format.html # show.html.erb
    format.js # show.js.erb
  end
end

第3步 – 创建_post.html.haml

# _post.html.haml
%article.post
  = sanitize post.body

第4步 – 创建show.js.erb并将#main div中的html替换为_post partial(我们在步骤3中创建)的内容

# show.js.erb
$("#main").html("<%= escape_javascript(render @post) %>");

现在所有内容都通过ajax传递,并且工作正常.

相关文章

以下代码导致我的问题: class Foo def initialize(n=0) @n = n end attr_accessor :n d...
这是我的spec文件,当为上下文添加测试“而不是可单独更新用户余额”时,我得到以下错误. require 's...
我有一个拦截器:DevelopmentMailInterceptor和一个启动拦截器的inititializer setup_mail.rb. 但我想将...
例如,如果我有YAML文件 en: questions: new: 'New Question' other: recent: ...
我听说在RSpec中避免它,let,let !,指定,之前和主题是最佳做法. 关于让,让!之前,如果不使用这些,我该如...
我在Rails中使用MongoDB和mongo_mapper gem,项目足够大.有什么办法可以将数据从Mongoid迁移到 Postgres...