如何使用https://angular.io/docs/ts/latest/guide/webpack.html上的vendor.ts

时间:2016-09-20 17:07:29

标签: angularjs angular typescript

根据https://angular.io/docs/ts/latest/guide/webpack.html,你应该能够在vendor.ts文件中添加像jquery这样的供应商

// Other vendors for example jQuery, Lodash or Bootstrap
// You can import js, ts, css, sass, ...

到目前为止我做了什么

typings install dt~jquery --global --save
npm install jquery --save

我将此行添加到vendor.ts

import 'jquery'

webpack运行没有错误。但是我无法在我的Component中使用jQuery。

import { Component, OnInit, ElementRef } from '@angular/core';

@Component({
  selector: 'table-widget',
  templateUrl: 'table-widget.component.html'
})

export class TableWidgetComponent implements OnInit {

 constructor(private _elRef: ElementRef) {

 }

 ngOnInit() : void {
   $(this._elRef.nativeElement).find('button').on('click', function() { alert("it works");  });
 }
}

我在这里做错了什么?

1 个答案:

答案 0 :(得分:1)

您需要将jQuery公开给全局上下文。

这些选项中的任何一个都可以实现您的目标。

在你的webpack配置中:

plugins: [
    ....  //your other configs
    new webpack.ProvidePlugin({
        jQuery: 'jquery',
        $: 'jquery',
        jquery: 'jquery'
    })
]

或使用expose-loader

module: {
  loaders: [
      { test: require.resolve("jquery"), loader: "expose?$!expose?jQuery" },
  ]
}