所以这就是我所拥有的:
def index
@profiles = Profile.all
respond_to do |format|
format.html # index.html.erb
format.xml { render :xml => @profiles }
format.json { render :json => @profiles }
end
end
我想添加 rss、atom 和可能的一些自定义的,例如返回配置文件图像的。