Entries from 2013-06-27 to 1 day

class PostsController < ApplicationController respond_to :html, :json def index @posts = Post.all respond_with @posts end end $.ajax('/posts', { dataType: 'json', contentType: 'application/json' }) みたいな感じのがあったとして、 /posts に…