2

我正在尝试将页面标题更改为您在编辑页面上实际编辑的项目的名称。我在活动的管理文档中读到你应该使用@page_title。问题是我不知道把它放在哪里才能让它在编辑页面上工作。

4

2 回答 2

3

这将起作用:

controller do
  def new
    @page_title = 'new title'
    super
  end

  def edit
    @page_title = 'edit title'
    super
  end
end
于 2017-05-11T13:53:24.147 回答
-1

我在活跃的管理员 google 组中发布了此内容,他们希望将此功能添加到下一次更新中。如果他们最终添加它,我将在这里发布一些关于它是如何完成的信息。

于 2011-10-02T09:13:40.603 回答