Angular 5:未捕获的ReferenceError:模块未在scripts.bundle.js

时间:2018-05-02 08:11:59

标签: javascript angular

在Angular 5中,我在下面包含了我的sample.js文件:

"use strict";
function abc() {
  console.log("hello from js");
}
module.exports = {
  abc: abc
};

Angular构建成功。我可以在http://localhost:4200查看我的应用,并在js'中查看“你好”。在浏览器控制台中。但是,浏览器控制台也会显示以下错误:"未捕获的ReferenceError:模块未在scripts.bundle.js中定义:18"它指向关键字'模块'在我的sample.js中。为什么会出现错误,但应用程序仍可正常运行?这个错误不好吗?

0 个答案:

没有答案