说我有以下内容:
class ProjectsController < ApplicationController
responds_to :html
def show
@project = Project.find(params[:id])
respond_with(@project)
end
end
class UsersController < ApplicationController
responds_to :html
def show
@user = User.find(params[:id])
respond_with(@user)
end
end
有没有一种方法可以用来引用 layouts/application.html.erb 模板中传递给 respond_with 的对象,而无需知道分配的变量名称?
谢谢。