溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

如何解決使用bootstrap的dropdown部件時報錯的問題

發(fā)布時間:2021-07-12 13:43:31 來源:億速云 閱讀:165 作者:小新 欄目:web開發(fā)

這篇文章主要介紹了如何解決使用bootstrap的dropdown部件時報錯的問題,具有一定借鑒價值,感興趣的朋友可以參考下,希望大家閱讀完這篇文章之后大有收獲,下面讓小編帶著大家一起了解一下。

問題描述:使用bootstrap的dropdown部件,打開網(wǎng)頁后點(diǎn)擊dropdown,報了如下錯誤:error:Bootstrap dropdown require Popper.js

如何解決使用bootstrap的dropdown部件時報錯的問題

bootstrap代碼(只要是含dropdown部件的都可以啦)為:

<ul class="nav nav-tabs">
  <li class="nav-item dropdown">
   <a class="nav-link dropdown-toggle" data-toggle="dropdown" href="#" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" role="button" aria-haspopup="true" aria-expanded="false">Animation</a>
   <div class="dropdown-menu">
   <a class="dropdown-item" href="#" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" >Action</a>
   <a class="dropdown-item" href="#" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" >Another action</a>
   <a class="dropdown-item" href="#" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" >Something else here</a>
   <div class="dropdown-divider"></div>
   <a class="dropdown-item" href="#" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" >Separated link</a>
   </div>
  </li>
</ul>

看錯誤提示,應(yīng)該是要導(dǎo)入Popper.js文件,網(wǎng)上查了下方法,可以直接工程目錄下使用npm安裝:npm install --save popper.js

安裝好后,我們可以在目錄下找到node_modules文件夾,然后將popper.js文件引入html()。

保存好刷新網(wǎng)頁再試了一下,發(fā)現(xiàn)還是不行,仍報了剛才的錯誤。于是我檢查了一下node_modules->dist文件夾下的popper.js文件,發(fā)現(xiàn)有3個這樣的文件(esm和umd文件夾下也各有一個popper.js文件)。再于是我把它們分別引入后再操作一下dropdown部件,最后在引入umd文件下的popper.js后^_^,bingo--終于是可以用了YY。雖然不知道為啥會這樣,但也算是成功解決了問題。

感謝你能夠認(rèn)真閱讀完這篇文章,希望小編分享的“如何解決使用bootstrap的dropdown部件時報錯的問題”這篇文章對大家有幫助,同時也希望大家多多支持億速云,關(guān)注億速云行業(yè)資訊頻道,更多相關(guān)知識等著你來學(xué)習(xí)!

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI