说我有以下内容:
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的对象,而无需知道指定变量的名称?
感谢。