gpt4 book ai didi

javascript - 简单的 RequireJS、AngularJS、Electron App、依赖项未执行

转载 作者:太空宇宙 更新时间:2023-11-03 22:33:55 24 4
gpt4 key购买 nike

我正在编写我的第一个 Electron/Angular/RequireJS 单页桌面应用程序。我从 electron-boilerplate 开始而且效果很好。然而,我需要将 AngularJs 添加到等式中——样板已经使用了 RequireJS。我尝试了多种解决方案,但要么出现错误,要么依赖项未执行。因此,我尝试实现之前堆栈溢出问题“Simple requireJS with angularJS - angular is not defined”中的简单示例。然而,我看到的是文件正在被解析,但它从不执行里面的代码。这几乎就像一个或多个依赖项未得到满足,因此它们不会执行。我的文件如下 - 我添加了一些日志记录,以便我可以轻松查看执行路径。

app.html -- 包含 RequireJS 的起点。

<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Electron Boilerplate</title>
</head>
<body ng-app="ReqApp" ng-controller="GreetCtrl">

<h1>{{greeting}}!</h1>
<script data-main="require_config" src="vendor/require.js"></script>

</body>
</html>

require_config.js -- 这包含 RequireJS 配置。

console.log("REQUIRE_CONFIG.JS-------------"+requirejs.version);    
requirejs.config({
// alias libraries paths
paths: {
'domReady': './vendor/requirejs-domready',
'angular': './node_modules/angular/angular',
'GreetCtrl': './js/GreetCtrl',
'app': './js/app'
},
// angular does not support AMD out of the box, put it in a shim
shim: { 'angular': { exports: 'angular' }
},
// kick start application
deps: ['./bootstrap']
});

bootstrap.js——来自 RequireJS 的文件 deps手动引导 AngularJS。

console.log("BOOTSTRAP.JS1-------------");
define([
'require',
'angular',
'app'
], function (require, ng, app) {
'use strict';

console.log("BOOTSTRAP.JS2+++++++++++++");
require(['domReady!'], function (document) {
console.log("BOOTSTRAP.JS+++++++++++++");
ng.bootstrap(document, ['ReqApp']);
});
});

./js/app.js -- 这会初始化应用程序的 AngularJS 模块。

console.log("APP.JS-------------"+requirejs.version);
define([
'angular',
'GreetCtrl'
], function (ng) {
'use strict';

console.log("APP.JS+++++++++++++");
return ng.module('ReqApp', [ 'ReqApp.GreetCtrl' ]);
});

./js/GreetCtrl.js

console.log("GREETCTRL.JS1-------------");
define(['angular'], function(angular) {
console.log("GREETCTRL.JS1+++++++++++++");
angular.module( 'ReqApp.GreetCtrl', [])
.controller( 'GreetCtrl', function GreetCtrl ($scope) {
$scope.greeting = "Hello World";
});
});

运行此示例的控制台输出为:

[16982:0917/115914:ERROR:browser_main_loop.cc(173)] Running without the SUID sandbox! See https://code.google.com/p/chromium/wiki/LinuxSUIDSandboxDevelopment for more information on developing with the sandbox on.
[17010:0917/115915:INFO:renderer_main.cc(200)] Renderer process started
[17014:0917/115915:INFO:renderer_main.cc(200)] Renderer process started
[16982:0917/115915:ERROR:browser_gpu_channel_host_factory.cc(146)] Failed to create channel.
[16982:0917/115915:INFO:CONSOLE(43)] "REQUIRE_CONFIG.JS-------------2.1.20", source: file:///home/swdev/projects/build/require_config.js (43)
[16982:0917/115915:INFO:CONSOLE(8)] "BOOTSTRAP.JS1-------------", source: file:///home/swdev/projects/build/bootstrap.js (8)

页面输出为:

{{greeting}}!

从输出中可以看到,似乎只解析了 require_config.js 和 bootstrap.js 文件,但定义中的代码并未执行。我的问题是:

  1. 为什么 bootstrap.js 函数从未被调用?
  2. 为什么 app.js 和 GreetCtrl.js 文件甚至没有被解析?
  3. 由于 Electron 使用 Node ,我必须使用 requirejs ,我需要删除对 require 的使用吗?来自 bootstrap.js 并将其替换为 requirejs还有?注意:我已经测试过更改此设置,但它对我的问题没有任何帮助。
  4. 我确实注意到 stack overflow example我遵循的定义 ng-app="ReqApp"在 HTML 正文定义中。我有限的理解是,这应该被删除,因为我们正在手动引导 AngularJS。我的用例(Election(node)/RequireJS/AngularJS)的正确方法是什么?注意:我已经通过从主体定义中删除定义进行了测试,但它对我的问题没有任何作用。

我花了几天时间尝试解决这个问题,因此我们将非常感谢任何帮助!

<小时/>

其他尝试:多玩一些来简化部分问题。我似乎无法让 RequireJS 执行或解析某些依赖项。我的简化是:

./app.js

<!doctype html>
<html>
<head>
<title>Electron Boilerplate</title>
</head>
<body >
<script data-main="require_config" src="vendor/require.js"></script>
<h1>Hello World!</h1>
</body>
</html>

./require_config.js

console.log("REQUIRE_CONFIG.JS-------------"+requirejs.version);
requirejs.config({
paths: {
'app': './js/app'
},
// kick start application
deps: ['./bootstrap']
});

./bootstrap.js

console.log("BOOTSTRAP.JS1-------------");
define( ['app'], function (app) {
'use strict';
console.log("BOOTSTRAP.JS2+++++++++++++");
});

./js/app.js

console.log("APP.JS-------------");
define([], function () {
'use strict';
console.log("APP.JS+++++++++++++");
});

结果输出仍然与我上面的原始输出相同。 boostrap.js 和 require_config.js 已处理。 bootstrap.js 定义/函数永远不会被调用,app.js 永远不会被解析。

最佳答案

contacting之后Electron boilerplate 的开发者我想他让我改正了。主要问题是我对样板的所有移动部分缺乏了解。当尝试扩展样板文件时,我当时没有意识到/理解他的应用程序是使用 ES6 编写的,ES6 已被转换为兼容的 RequireJS 格式。因此我遇到的问题根本不是 RequireJS 的问题。我编写的模块符合 RequireJS,然后被转译,这意味着 RequireJS 无法处理它们。

正确的方法是编写 ES6 模块,问题就消失了。一种解决方法是使用符合 RequieJS 的语法添加模块,然后修改样板 build.js copyFromAppDir 以排除这些文件被转译。但同样,为了遵循样板的初衷和设计,代码应该使用 ES6 编写。

关于javascript - 简单的 RequireJS、AngularJS、Electron App、依赖项未执行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32630588/

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