3

我在我的项目中使用 Active Admin。我想设置编辑和新动作的标题?我试过关注,但它不会改变标题。

controller do
  def edit
    @page_title="This is Edit"
  end

  def new
    @page_title="This is New"
  end
end

我也试过

member_action :edit do
  @page_title="This is Edit"
end

member_action :new do
  @page_title="This is New"
end

我无法使用上述设置标题。我如何设置标题?提前致谢。

4

2 回答 2

2

升级到 0.6.1 或更高版本,你会很好:)

于 2013-11-11T20:35:35.557 回答
-2

在activeadmin gem的已解决问题中已经给出,因此您也可以参考 Check Here

代码:

ActiveAdmin.register Category do
  form :title => { :new => "New Category", :edit => "Renew  Category"} do |f|
    f.inputs do
      f.input :name
      f.input :description
    end
    f.actions do
      f.action :submit
      f.action :cancel, :label => 'Cancel', :input_html => {:class => 'cancel_subscription'}
    end
  end
end

Edit and New Forms 显示新标题(分别为“更新类别”和“新类别”)

希望这会有所帮助。谢谢。

于 2013-11-13T11:04:03.137 回答