web-dev-qa-db-ja.com

ブートストラップ:Uncaught TypeError:未定義のプロパティ 'fn'を読み取れません

Bootstrapを使用してElectronアプリケーションを作成しようとしています。このエラーメッセージが表示されます。

Uncaught TypeError: Cannot read property 'fn' of undefined
at setTransitionEndSupport (bootstrap.js:122)
at bootstrap.js:199
at bootstrap.js:201
at bootstrap.js:9
at bootstrap.js:10

Package.jsonの私の依存関係は次のとおりです。

"dependencies": {
  "bootstrap": "^4.1.2",
  "electron": "^2.0.5",
  "jquery": "^3.3.1",
  "popper.js": "^1.14.3"
}

私のindex.htmlファイルは次のとおりです。

<!DOCTYPE html>
<html>

<head>
  <meta charset="UTF-8">
  <title>Release Management Report</title>

</head>

<body>

  <div class="container">

    <h1>Bootstrap Test</h1>

    <p>
        We are using node
        <script>document.write(process.versions.node)</script>, Chrome
        <script>document.write(process.versions.chrome)</script>, and Electron
        <script>document.write(process.versions.electron)</script>.
    </p>

  </div>

  <script src="node_modules/jquery/dist/jquery.min.js"></script>
  <script src="node_modules/popper.js/dist/umd/popper.min.js"></script>
  <script src="node_modules/bootstrap/dist/js/bootstrap.js"></script>

</body>

</html>

次に、htmlファイルが、Electronクイックスタートからmain.jsによってロードされます。

const { app, BrowserWindow } = require('electron')

// Keep a global reference of the window object, if you don't, the window will
// be closed automatically when the JavaScript object is garbage collected.
let win

function createWindow() {
  // Create the browser window.
  win = new BrowserWindow({ width: 800, height: 600 })

  // and load the index.html of the app.
  win.loadFile('index.html')

  // Open the DevTools.
  win.webContents.openDevTools()

  // Emitted when the window is closed.
  win.on('closed', () => {
    // Dereference the window object, usually you would store windows
    // in an array if your app supports multi windows, this is the time
    // when you should delete the corresponding element.
    win = null
  })
}

// This method will be called when Electron has finished
// initialization and is ready to create browser windows.
// Some APIs can only be used after this event occurs.
app.on('ready', createWindow)

// Quit when all windows are closed.
app.on('window-all-closed', () => {
  // On macOS it is common for applications and their menu bar
  // to stay active until the user quits explicitly with Cmd + Q
  if (process.platform !== 'darwin') {
    app.quit()
  }
})

app.on('activate', () => {
  // On macOS it's common to re-create a window in the app when the
  // dock icon is clicked and there are no other windows open.
  if (win === null) {
    createWindow()
  }
})

私が見つけた解決策のほとんどは、Bootstrapの前にjQueryをインポートするように言っていますが、それはすでに私がやっていることです。

助けてくれてありがとう!

8
Griford

問題を解決する方法を見つけました。

Index.htmlにスクリプトを追加しました。

<script src="scripts/script.js"></script>

これはscript.jsのコンテンツです:

window.$ = window.jQuery = require('jquery'); // not sure if you need this at all
window.Bootstrap = require('bootstrap');

二重インポートを避けるために、index.htmlからこれらの行を削除できます。

<script src="node_modules/jquery/dist/jquery.min.js"></script>
<script src="node_modules/popper.js/dist/umd/popper.min.js"></script>
<script src="node_modules/bootstrap/dist/js/bootstrap.js"></script>

このソリューションは、karo1915からのコメントの下で https://github.com/understrap/understrap/issues/449 で見つけました。

14
Griford

私の場合、スクリプトのインポートの順序が間違っていました。 bootstrap= importは、popperおよびjqueryインポートの後に来る必要があります。

Bootstrap v4。+はpopper.jsとjqueryに依存するため、

"scripts": [
          "./node_modules/jquery/dist/jquery.slim.min.js",
          "./node_modules/popper.js/dist/umd/popper.min.js",
          "./node_modules/bootstrap/dist/js/bootstrap.min.js"
        ]
3
Anuj Kumar

Grifordからの回答のおかげで、Angular&ElectronアプリをBootstrapで実行することができました。ここで貢献したかったのは、外部ファイルが不要であるということだけです。スクリプトブロックでJQueryとBootstrapを初期化することもできます。

<script>
  window.$ = window.jQuery = require('jquery');
  window.Bootstrap = require('bootstrap');
</script>

これは、次のバージョン(Electron 2.0.7)で機能します。

"bootstrap": "^4.1.3",
"jquery": "^3.3.1",
"popper.js": "^1.14.4"

注:上記の2行で初期化する場合、Bootstrapを使用するために他のスクリプト統合は必要ありません。追加する必要があるのはCSS(私の場合、angular.json経由でバンドルに追加されます) )。

3
Achim Schrepfer

bootstrap 4.1.3、およびスクリプトの順序が正しいと確信しています。jqueryはブートストラップの前に配置されます。

これらのスクリプトをtampermonkeyスクリプト(現在のWebページを変更できるサードパーティのスクリプトを管理するブラウザーアドオン)に@require属性、jqueryの読み込みとbootstrap=読み込みの間にコードを挿入するのは困難です。

前のバージョンへの変更3.3.7 of bootstrap=はエラーを解決します。bootstrapの次のバージョンを待つことで解決します。

0
dasons