我试图弄清楚如何在我的角度2应用程序中全局使用jQuery,到目前为止我找到的唯一合理来源是stackoverflow answer但是我似乎无法让它工作。有没有办法用npm
包管理而不是tsd来实现这个目标(这个命令对我来说不起作用,我认为它来自于打字稿,但似乎没有。)
在此之后,我想我需要在app.ts文件中引用jQuery? (bootstrap.ts用来启动应用程序的主文件)
这是我的项目结构
app
components
app.ts
services
typings
bootstrap.ts
index.html
我认为需要用于jQuery实现的代码示例很少
app.ts
import {Component, View} from 'angular2/core';
@Component({
selector: 'app',
templateUrl: 'app/components/app.html'
})
export class App { }
bootstrap.ts
import {App} from './components/app';
bootstrap(App);
答案 0 :(得分:6)
使用以下方法安装jquery打字:
npm install @types/jquery
在jQuery.js
index.html
文件
而且......我想:)
祝你好运