无法在电子应用程序上加载 Goldenlayout 库

Cannot load Goldenlayout library on electron app

您好,我正在尝试重新创建黄金布局 angular 复杂应用程序 https://golden-layout.com/tutorials/angular-complex.html as a electron application, so basically I just did the quick start example of electron http://electron.atom.io/docs/latest/tutorial/quick-start/ 并在我的 index.html 上完成了黄金布局的所有逻辑,但它向我发送了这个错误:

jQuery 作为 GoldenLayout 的依赖项缺失。请在 GoldenLayout 的范围内公开 $(例如 window)或在使用 RequireJS/AMD

时将 "jquery" 添加到您的路径

中所述,您需要按以下方式加载 jquery(在包含 golden-layout 之前):

<script>window.$ = window.jQuery = require('./path/to/jquery.js');</script>

如果我没理解错的话,是因为jquery'detects'在requireJS环境下运行加载$jQuery modules(不是 window