1

说我有以下内容:

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 的对象,而无需知道分配的变量名称?

谢谢。

4

1 回答 1

0

不,没有方法(至少我没有听说过这种方法)。但是如果你想你可以看看这里,这是一个很好的解决方案:体面的曝光

我希望我对你有一点帮助。

于 2011-09-16T18:02:47.943 回答