EngineYard 上的 Bootstrap 下拉菜单
我的布局/applications.html.erb 中有一个下拉菜单,使用 twitter bootstrap 完成,
<li class="divider-vertical"></li>
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown" > <%= current_user.name %> </a>
<ul class="dropdown-menu">
<%= link_to 'Preferinte',edit_user_path(current_user) %>
<a href="/logout">Iesire</a>
</ul>
</li>
在我的本地计算机上一切正常,但当我将其上传到 EngineYard 时,下拉菜单将无法工作。
I have a dropdown menu in my layout/applications.html.erb done with twitter bootstrap
<li class="divider-vertical"></li>
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown" > <%= current_user.name %> </a>
<ul class="dropdown-menu">
<%= link_to 'Preferinte',edit_user_path(current_user) %>
<a href="/logout">Iesire</a>
</ul>
</li>
Everything works fine on my local machine but when I uploaded it on EngineYard the dropdown won't work .
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你使用的是 Rails 3.0 吗?
您在部署之前压缩了 Rails 资源吗?查找服务器日志以查看是否无法呈现所需的 javascript 资源和资源。 CSS 样式表。一个好的起点是
使用以下命令禁用在 production.rb 中压缩静态资产:
同时确保在 production.rb 中启用提供静态资产
Are you on rails 3.0?
Did you compress the rails assets before deploy? Look for server logs to see if its failing to render the required javascript assets & css stylesheets. A good place to start will be to do
or to just disable compressing static assets in production.rb using
Also ensure serving static assets is enabled in production.rb