2012年09月18日11:21 Ruby JavaScript Rails3でAjax処理をするRails3っぽい方法 Rails3でAjax処理するときって、このように :remote => true を指定しますよね。 = link_to 'link', ajax_path, :remote => true そうするとajax_path(この場合は ↓ のajax#sample)にAjaxリクエストが送られます。 class AjaxController < ApplicationController def sample respond_to do |format| format.html # sample.html.haml format.js # sample.js.haml end end end 通常、Ajax処理はjsとして処理されるため、sample.js.hamlがレ