我使用活动管理员,在我的应用程序中,必须在特定页面(不是全部)中加载不同的 .js。
关注此主题在 Rails 3 应用程序中添加特定于页面的 javascript 的最佳方式是什么?看起来很简单,但活动管理员中的布局已编译。
我使用了一种解决方法来覆盖页脚:
class ActiveAdmin::Views::Pages::Base < Arbre::HTML::Document
private
# Renders the content for the footer
def build_footer
div :id => "footer" do
para "Copyright © #{Date.today.year.to_s}- All rights reserved ".html_safe
end
end
end
如何在某些页面的标题中添加一些 .js?如何解决?(如果可能的话,使用“yield :head”或类似的东西,所以我可以从任何地方更容易地调用它;))
编辑注意:我想要包含的 js 呈现一个 highcharts