0

如何在 Ruby on Rails 4 中包含 footable?在我的 Gemfile 中,我添加了之后gem 'foo_table-rails' 我做了一个bundle install

在我的 application.js 我写道://= require footable.core 在 application.scss 我写道://= require footable.core

我什至尝试过*= require footable-rails,但不幸的是它不起作用。

我的 application.scss 如下图所示:

@import "bootstrap-sprockets";
@import "bootstrap";
*= require footable.metro

PS:我已经安装了引导程序,并且一直在使用它的模板。

4

1 回答 1

0

您的 application.js 是正确的,但在您的 application.scss 中,您需要选择一个主题,如果您从 Metro 主题开始,例如使用:

*= require footable.metro

尝试将您的 application.scss 更改为:

/*  
*= require footable.metro
*= require_self
*/
@import "bootstrap-sprockets";
@import "bootstrap";
于 2015-09-26T17:27:04.603 回答