gpt4 book ai didi

javascript - 将 Electron 与 Reactstrap 一起使用会导致错误 : Uncaught SyntaxError: Unexpected token :

转载 作者:行者123 更新时间:2023-12-03 12:20:13 30 4
gpt4 key购买 nike

尝试使用 reactstrap 时 package 在 Electron boilerplate app 中首先安装 npm 包

npm install --save reactstrap react react-dom
npm install bootstrap --save

然后在 /app/renderer/app.js 中导入 Bootstrap CSS
import 'bootstrap/dist/css/bootstrap.min.css';

我们在 JS 控制台中收到错误

Uncaught SyntaxError: Unexpected token :



删除 import bootstrap CSS 的声明消除了错误,但应用程序最终没有 Bootstrap CSS 样式。

问题:我们怎样才能得到 reactstrap在 Electron 应用程序中正常工作?

最佳答案

基本的 Electron 设置不理解 CSS,因此无法加载 CSS 文件。
相反,您可以将以下行添加到 <head> .index.html 的部分文件:

<link rel="stylesheet" href="../../node_modules/bootstrap/dist/css/bootstrap.min.css" />
Electron 应用程序(一个特殊的 Chromium 网络浏览器实例)将加载 CSS。

关于javascript - 将 Electron 与 Reactstrap 一起使用会导致错误 : Uncaught SyntaxError: Unexpected token :,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53028330/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com