我希望这是一个简单的问题。
我要在等效于$ document.ready()的Angular2上运行脚本。实现此目标的最佳方法是什么?
我尝试将脚本放在的末尾index.html
,但是据我发现,这不起作用!我认为它必须包含某种组件声明?
是否可以从.js
文件运行加载脚本?
编辑-代码:
我已经将以下js和css插件注入到我的应用程序中(来自Foundry html主题)。
<link href="css/themify-icons.css" rel="stylesheet" type="text/css" media="all" />
<link href="css/bootstrap.css" rel="stylesheet" type="text/css" media="all" />
...
<script src="js/jquery.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/flexslider.min.js"></script>
...
<script src="js/scripts.js"></script> //This initiates all the plugins
如前所述,scripts.js会“实例化”整个过程,因此需要在Angular准备好后运行。script.js
得到它的工作:
import {Component, AfterViewInit} from 'angular2/core';
@Component({
selector: 'home',
templateUrl: './components/home/home.html'
})
export class HomeCmp implements AfterViewInit {
ngAfterViewInit() {
//Copy in all the js code from the script.js. Typescript will complain but it works just fine
}