我正在为Ruby应用程序执行视图。这是一个示例:
http://mailclient-dmuldoon.c9.io/app/statistics/page_2
第一个表有“table table-hover”类,但它不起作用,bootstrap无法正确加载。
我对Ruby一无所知,我该如何解决?我应该检查什么?
在此文件中调用Bootstrap:app / assets / javascriptsapplication.js
使用以下代码:
// = require components / bootstrap.min.js
答案 0 :(得分:0)
您是否还加载了Bootstrap CSS文件?根据您加载的Bootstrap gem,这可能也是必需的。在app / assets / stylesheets / application.scss中,您可能需要具有以下三行:
@import "bootstrap-sprockets";
@import "bootstrap";
@import 'bootstrap/theme';