Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我的 Rails 引擎安装在 Rails 应用程序上时如何使用应用程序样式表?
现在,当安装引擎时,它们没有样式。我尝试覆盖 [engine]/layouts/application 以使用我的“应用程序”样式表,但我认为这是错误的方式。
我解决了这个设置应用程序布局的问题:)application_controller.rb
application_controller.rb
class ApplicationController < ::ApplicationController layout 'layouts/application' end