在我的网站中,我想在我的 ruby on rails 应用程序的选定更改上使用下拉菜单动态分配 application.erb.html 中的主题。
我的 application.html.erb 文件如下
<%= stylesheet_link_tag "#{current_theme}" %>
<%= select_tag(:current_theme, options_for_select([['Cerulean'], ['superhero'], 'Amelia'], ['Cosmo']])) %>
我想动态更改我当前的主题我的要求是想在下拉选择更改时分配主题
请帮我