10

Bootstrap 的最新 beta 版本 (v4) 使用 Tether js 定位元素,我无法让它在我的 Requirejs 应用程序中工作。

在我的 requirejs 配置中,我有以下垫片

paths: {
    jquery: '/path/to/jquery',
    tether: '/path/to/tether'
},
shim: { 
     'bootstrap': ['tether', 'jquery']       
}

当我想在我的应用程序中激活工具提示时,我使用以下我认为正确的代码

function page_events() {
    requirejs(['bootstrap'], function(bootstrap) {
        $('[data-toggle="tooltip"]').tooltip(); 
    }); 
}

这应该首先加载引导程序依赖项,然后执行代码。所以通常 Tether 应该包含在这段代码之前。

但控制台结果是

未捕获的 ReferenceError:未定义系绳

有没有人有同样的问题?

4

2 回答 2

7

创建一个这样的脚本:

define(['lib/tether.min'], function(tether) {
    window.Tether = tether;
    return tether;
});

然后改变这个:

paths: {
    jquery: '/path/to/jquery',
    // tether: '/path/to/tether'
    tether: '/path/to/your-own-tether'
},
shim: { 
     'bootstrap': ['tether', 'jquery']       
}

为什么?因为浏览器需要这个:

window.Tether = tether; // May be both requirejs and tether didn't do this
于 2016-01-08T17:01:51.913 回答
0

如果您希望 Tether 在全球范围内可用,您应该使用脚本标签手动包含它。RequireJS 不会公开它。

<script type="text/javascript" src="/js/tether.js"></script>
<script type="text/javascript" src="/js/optimized.min.js"></script>
于 2015-12-29T18:48:01.277 回答