angular4更新全局变量的错误

时间:2017-04-23 11:52:38

标签: javascript angular

我将项目更新为angular4。但我得到了这个错误。

ERROR:

  

错误错误:未捕获(在承诺中):ReferenceError:未定义应用程序   ReferenceError:未定义App       在HomepageComponent.webpackJsonp.593.HomepageComponent.ngOnInit(http://localhost:4200/0.chunk.js:4172:9)       at checkAndUpdateDirectiveInline(http://localhost:4200/vendor.bundle.js:12457:19)       at checkAndUpdateNodeInline(http://localhost:4200/vendor.bundle.js:13836:17)       at checkAndUpdateNode(http://localhost:4200/vendor.bundle.js:13804:16)       在debugCheckAndUpdateNode(http://localhost:4200/vendor.bundle.js:14433:59)       在debugCheckDirectivesFn(http://localhost:4200/vendor.bundle.js:14374:13)       at Object.eval [as updateDirectives](ng:///AppPcModule/HomepageComponent_Host.ngfactory.js:22:5)

'App'是一个全局变量,我在'javascript_import.ts'文件中声明了它。

'javascript_import.ts':

items

我在'app.module.ts'和'homepage.component.ts'中导入'javascript_import.ts'。

但是当我打开项目的主页时,我收到了一个错误。

'homepage.component.ts':

declare var $: any;
 declare var App: any;
 declare var Login:any;
 declare var jQuery:any;
 declare var Cookie:any;
 declare var StepWizard:any;
 declare var OwlCarousel: any;
 declare var LocalStorage:any;
 declare var StyleSwitcher: any;
 declare var PageContactForm:any;
 declare var RevolutionSlider: any;
 declare var MasterSliderShowcase2: any;

那我怎么能解决这个问题?

0 个答案:

没有答案