javascript – Rails app:需要bootstrap vs require bootstrap-sprockets

前端之家收集整理的这篇文章主要介绍了javascript – Rails app:需要bootstrap vs require bootstrap-sprockets前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
添加之间的相应差异是什么?
//= require bootstrap-sprockets

//= require bootstrap

到application.js?

documentation说:

bootstrap-sprockets provides individual Bootstrap Javascript files
(alert.js or dropdown.js,for example),while bootstrap provides a
concatenated file containing all Bootstrap Javascripts

有人提供比其他人更好的表现吗?

解决方法

需要通过bootstrap-sprockets引导以便更快地编译.

需要bootstrap-sprockets over bootstrap以便于调试.

While bootstrap-sprockets provides individual Bootstrap components for ease of debugging,you may alternatively require the concatenated bootstrap for faster compilation

https://github.com/twbs/bootstrap-rubygem#a-ruby-on-rails

原文链接:https://www.f2er.com/js/157315.html

猜你在找的JavaScript相关文章