嗨,我有一个名为“script.js”的脚本,问题是我有很多函数,我需要在 angular 的开头执行这个函数。
var appMaster = {
preLoader: function(){
},
smoothScroll: function() {
}
}
但我需要调用这个变量 appMaster
import '../../assets/js/script.js';
@Component({
selector: 'app-home',
templateUrl: './home.component.html',
styleUrls: ['./home.component.css'],
encapsulation: ViewEncapsulation.None
})
export class HomeComponent implements OnInit {
constructor() { }
ngOnInit() {
appMaster.preLoader();
appMaster.smoothScroll();
}
}
错误是 appMaster 没有未声明的变量。如何在其他脚本中执行函数?