nat*_*han 5 css jquery-mobile ruby-on-rails-3
我的网站的CSS在桌面浏览器和移动浏览器上运行良好,但当我点击链接返回主页"root_path"时,我的一些CSS样式消失了.
#routes.rb
resources :welcomes
root :to => "welcomes#index"
#_header.html.erb
<%= link_to 'Welcome!', root_url %>
#application.html.erb
<%= stylesheet_link_tag "jquery.mobile-1.0b2.css" if mobile_device? %>
Run Code Online (Sandbox Code Playgroud)
如果我使用网址查看http://192.168.1.4:3000它看起来很棒.当我点击标题中的"欢迎"链接时,我失去了CSS样式.我认为这是因为网址变成了http://192.168.1.4:3000/#/.为什么不只是/?我试过root_path,root_url,welcomes_path,等所有具有相同的结果.