4

我正在尝试将引导开关添加到 rails 项目。当我从这里添加我的脚本时:

<script src="https://cdnjs.cloudflare.com/ajax/libs/bootstrap-switch/3.3.4/js/bootstrap-switch.js" data-turbolinks-track="true"></script>

我最终在控制台中收到错误:

Uncaught TypeError: Cannot read property 'fn' of undefined
    at bootstrap-switch.js:743
    at bootstrap-switch.js:19
    at bootstrap-switch.js:22

以红色突出显示为问题的 fn 在这里:

$.fn.bootstrapSwitch = function (option) {
    for (var _len2 = arguments.length, args = Array(_len2 > 1 ? _len2 - 1 : 0), _key2 = 1; _key2 < _len2; _key2++) {
      args[_key2 - 1] = arguments[_key2];
    }

任何想法为什么找不到?或者有人有我可以使用的 bootstrap-switch.js 文件的链接吗?

谢谢!

我也尝试使用bootstrap-switch gem,但这给了我一个不同的错误。

4

1 回答 1

6

此类错误背后的最常见原因是,在此插件脚本之前没有加载 JQuery。确保您bootstrap-switch.js在 JQuery 之后添加了该 CDN 版本。

我的意思是如下:

<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/bootstrap-switch/3.3.4/js/bootstrap-switch.js" data-turbolinks-track="true"></script>
于 2017-03-19T00:30:56.383 回答