我想在我的类型脚本(.ts)文件中使用Jquery库,我使用 原子编辑。
为了实现这一点,我遵循了以下步骤
由于我使用的是原子编辑器,因此安装了apm install atom-typescript
由于Jquery是外部JS库,我已经下载了类型定义 来自here并将该文件放在我的应用程序文件夹
3在我的test.ts文件中添加了对jquery.d.ts的引用
以下是test.ts代码
/// <reference path="./node_modules/jquery/dist/jquery.d.ts" />
export class test {
$("#testID").val("test"); // editor shows ERROR in this line , "parameter declaration expected"
}
请让我知道我错过了什么。
答案 0 :(得分:0)
不是复制粘贴定义文件,而是使用typings代替最佳做法。打字会为你处理很多,例如。你不必考虑引用正确的路径。
所以,只需运行typings init
和typings install --save --global dt~jquery
即可。