在Angular组件中引用两个JavaScript文件时出现问题

时间:2019-04-10 19:27:29

标签: javascript angular

我有两个如下的Javascript文件,一个是父类,它定义一个方法,另一个是子类,它从父类调用该方法:

parent.js

function HelloWorld() {
    alert('HelloWorld');
}

child.js

HelloWorld();

在Angular组件中,我像这样引用脚本:

import { Component } from '@angular/core';

import 'src/app/parent.js';
import 'src/app/child.js';

@Component({
  selector: 'app-root',
  templateUrl: './app.component.html',
  styleUrls: ['./app.component.css']
})
export class AppComponent {
  title = 'my-dream-app';
}

运行应用程序时,在控制台中收到一条错误消息,指出:

未捕获的参考错误:未定义HelloWorld

如果我从Parent.js内调用HelloWorld(),它将正常工作;但似乎Angular likes没有两个单独的JS文件。当我只在一个纯HTML文件中执行此操作,并在其中包含两个脚本时,就可以正常工作。我的Angular组件缺少什么来阻止我尝试做的事情?

1 个答案:

答案 0 :(得分:0)

那是因为打字稿正在将所有内容编译为封闭的匿名函数。因此,您的parent.js将被编译为

(function(module, exports) {

function helloWorld () {
  console.log('hello')
}

/***/ }),

您将无法访问该范围。

但是,如果您执行export function helloWorld() {...},然后将其导入到child.js中,例如:

child.js

import {helloWorld} from '../path/to/child.js'
helloWorld()

OR

import * as parent from './parent.js';
parent.helloWorld()

然后孩子将可以使用该功能。