您好,登錄后才能下訂單哦!
這篇文章給大家介紹bootstrap怎么在electron中使用,內容非常詳細,感興趣的小伙伴們可以參考借鑒,希望對大家能有所幫助。
安裝
安裝bootstrap命令如下:
npm install bootstrap --save
安裝后可能報告如下錯誤:
npm WARN bootstrap@4.1.3 requires a peer of popper.js@^1.14.3 but none is installed. You must install peer dependencies yourself.
需要自行安裝popper,命令如下:
npm install popper.js@^1.14.3 --save
頁面引入bootstrap
頁面引入bootstrap的css和js文件如下:
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Title</title> <link href="./node_modules/bootstrap/dist/css/bootstrap.min.css" rel="external nofollow" rel="stylesheet"/> </head> <body> Hello electron! <div> <button id="openFile" class="btn btn-success">Open File</button> <button id="sendMsg" class="btn btn-warning">Send Message (Open File)</button> </div> <script> window.$ = window.jQuery = require('./node_modules/jquery/dist/jquery.min.js'); require('./node_modules/bootstrap/dist/js/bootstrap.min.js'); </script>
注:網上有的例子中,引入bootstrap.min.css是用傳統方式引入,即:
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="external nofollow" >
這種方式太搞笑了吧,明明已經在本地裝好了全套的bootstrap,偏偏CSS還要用網絡方式引入,又浪費流量,速度又慢,真是不知道想出這種方式的人是怎么想的。
補充:在electron中使用bootstrap時,雖然在引用bootstrap之前引用了jQuery,但是依然出現錯誤:
Uncaught error: bootstrap's javascript requires jquery
解決方法:不使用script標簽加載jQuery,而是使用下面的方法加載:
window.$ = window.jQuery = require('/path/to/jquery');
關于bootstrap怎么在electron中使用就分享到這里了,希望以上內容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。