如何在打字稿文件中引用jQuery(VS2015)

时间:2017-02-10 00:13:03

标签: javascript jquery typescript visual-studio-2015

我的ASP.NET MVC项目中有很多javascript插件和库,
 我想转换成打字稿。

问题:

如何在ts文件中引用jQuery?

当我使用tsc

手动构建ts文件时,我收到以下错误
  

myfile.ts(170,4):错误TS2304:找不到名称'jQuery'   myfile.ts(172,1):错误TS2304:找不到名字'$'   myfile.ts(173,2):错误TS2304:找不到名字'$'。

1 个答案:

答案 0 :(得分:4)

  1. 如果您尚未
  2. ,请安装Node.js
  3. 打开命令行(cmd.exe)
  4. shared_ptr到您的项目根目录
  5. 执行cd
  6. 现在在node_modules下你会找到" index.d.ts" jQuery的typescript定义文件。

      

    node_modules/@types/jquery/index.d.ts


     5.将文件拖放到打开的打字稿文件的顶部" yourFile.ts"

      

    ///< reference   路径=" ../../../ node_modules/@types/jquery/index.d.ts" />   
    ....   
    ...你的打字代码在这里

    现在您将拥有 jQuery $ 的智能感知。