Giải pháp UMD / AMD
Đối với những người này, những người đang thực hiện nó thông qua UMD và biên dịch quarequire.js
, có một giải pháp laconic.
Trong mô-đun, yêu cầu tether
là phụ thuộc, tải Tooltip
dưới dạng UMD, trước định nghĩa mô-đun, chỉ cần đặt đoạn mã ngắn vào định nghĩa của Tether:
// First load the UMD module dependency and attach to global scope
require(['tether'], function(Tether) {
// @todo: make it properly when boostrap will fix loading of UMD, instead of using globals
window.Tether = Tether; // attach to global scope
});
// then goes your regular module definition
define([
'jquery',
'tooltip',
'popover'
], function($, Tooltip, Popover){
"use strict";
//...
/*
by this time, you'll have window.Tether global variable defined,
and UMD module Tooltip will not throw the exception
*/
//...
});
Đoạn mã ngắn này ngay từ đầu, thực sự có thể được đặt ở bất kỳ cấp độ cao hơn nào của ứng dụng của bạn, điều quan trọng nhất - để gọi nó trước khi sử dụng thực tế các bootstrap
thành phần có Tether
phụ thuộc.
// ===== file: tetherWrapper.js =====
require(['./tether'], function(Tether) {
window.Tether = Tether; // attach to global scope
// it's important to have this, to keep original module definition approach
return Tether;
});
// ===== your MAIN configuration file, and dependencies definition =====
paths: {
jquery: '/vendor/jquery',
// tether: '/vendor/tether'
tether: '/vendor/tetherWrapper' // @todo original Tether is replaced with our wrapper around original
// ...
},
shim: {
'bootstrap': ['tether', 'jquery']
}
CẬP NHẬT : Trong Boostrap 4.1 Ổn định, họ đã thay thế Tether , bằng Popper.js , xem tài liệu về cách sử dụng .