未捕获的 ReferenceError:在 Angular 2 webpack 全局库安装中未定义要求
Posted
技术标签:
【中文标题】未捕获的 ReferenceError:在 Angular 2 webpack 全局库安装中未定义要求【英文标题】:Uncaught ReferenceError: require is not defined on Angular 2 webpack global library installation 【发布时间】:2017-03-03 21:17:24 【问题描述】:我是 Angular 2 的新手。我在 Angular 2 项目中使用 ng2-charts。 ng2-charts 要求将 Chart.js 嵌入到我的应用程序标头中,例如:
<script src="node_modules/chart.js/src/chart.js"></script>
从我的 index.html 我无法访问 nodes_modules (Error: GET http://localhost:4200/node_modules/chart.js/dist/Chart.js) 。据我了解,这是因为 node_modules 没有“编译”到 dist 文件夹中。
因此我需要将 chart.js 添加为全局库安装(如此处所述:https://github.com/angular/angular-cli#global-library-installation)
当我这样做时,我得到“Uncaught ReferenceError: require is not defined”。我认为这是因为 chart.js 在 systemJS 之前加载,因此不知道“require”。我尝试在apps[0].scripts 中的chart.js 之前添加systemJS,但这也不起作用。
这是我的 angular-cli.json:
"project":
"version": "1.0.0-beta.16",
"name": "poc1-iot-monitor-frontend"
,
"apps": [
"root": "src",
"outDir": "dist",
"assets": "assets",
"index": "index.html",
"main": "main.ts",
"test": "test.ts",
"tsconfig": "tsconfig.json",
"prefix": "app",
"mobile": false,
"styles": [
"styles.css"
],
"scripts": [
"../node_modules/systemjs/dist/system.src.js",
"../node_modules/chart.js/src/chart.js"
],
"environments":
"source": "environments/environment.ts",
"dev": "environments/environment.ts",
"prod": "environments/environment.prod.ts"
],
"addons": [],
"packages": [],
"e2e":
"protractor":
"config": "./protractor.conf.js"
,
"test":
"karma":
"config": "./karma.conf.js"
,
"defaults":
"styleExt": "css",
"prefixInterfaces": false
我将如何嵌入 Chart.js 或任何其他外部 js 库?
我正在使用 angular-cli: 1.0.0-beta.16。节点:4.4.2。 npm:3.10.6。 webpack 2.1.0-beta.22。
【问题讨论】:
【参考方案1】:我没有使用 Chart.js 的经验,但根据您的角度 cli 配置,您似乎指向的是图表 js 的未编译版本,这就是 require
错误的原因,您应该指向捆绑版本。
基于图表 js 文档,有一些专门用于生成捆绑包的 gulp 构建任务,请参阅此处https://github.com/chartjs/Chart.js#building-and-testing
【讨论】:
【参考方案2】:原来我从我的 angular-cli.json 链接到错误的文件。将 angular-cli.json apps[0].scripts 更改为:
...],
"scripts": [
"../node_modules/chart.js/dist/Chart.js"
],
...
成功了。也不再需要从 index.html 链接。
感谢 asotog 为我指明了正确的方向。
--- 编辑(奖励信息)---
对于那些想要在测试中添加外部库的人,请通过 karma.conf.js 文件数组添加它们:
module.exports = function (config)
config.set(
basePath: '',
frameworks: ['jasmine', 'angular-cli'],
plugins: [
require('karma-jasmine'),
require('karma-chrome-launcher'),
require('karma-remap-istanbul'),
require('angular-cli/plugins/karma')
],
files: [
pattern: "node_modules/chart.js/dist/Chart.js", included: true, watched: false ,
pattern: './src/test.ts', watched: false
],
preprocessors:
'./src/test.ts': ['angular-cli']
,
remapIstanbulReporter:
reports:
html: 'coverage',
lcovonly: './coverage/coverage.lcov'
,
angularCli:
config: './angular-cli.json',
environment: 'dev'
,
reporters: ['progress', 'karma-remap-istanbul'],
port: 9876,
colors: true,
logLevel: config.LOG_INFO,
autoWatch: true,
browsers: ['Chrome'],
singleRun: false
);
;
【讨论】:
啊!花了很长时间试图追查这个问题,我也在做同样的事情。以上是关于未捕获的 ReferenceError:在 Angular 2 webpack 全局库安装中未定义要求的主要内容,如果未能解决你的问题,请参考以下文章