gpt4 book ai didi

javascript - 如何在 typescript 文件 (VS2015) 中引用 jQuery (intellisense)

转载 作者:搜寻专家 更新时间:2023-10-30 21:20:03 25 4
gpt4 key购买 nike

我的 ASP.NET MVC 项目中有很多 javascript 插件和库,
我想将其转换为 typescript 。

问题:

如何在ts文件中引用jQuery?

当我使用 tsc

手动构建 ts 文件时出现以下错误

myfile.ts(170,4): error TS2304: Cannot find name 'jQuery'.
myfile.ts(172,1): error TS2304: Cannot find name '$'.
myfile.ts(173,2): error TS2304: Cannot find name '$'.

最佳答案

  1. 安装 Node.js如果你还没有
  2. 打开命令行(cmd.exe)
  3. cd 到你的项目根目录
  4. 执行 npm install @types/jquery

现在在 node_modules 下,您将找到 jQuery 的“index.d.ts” typescript 定义文件。

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


5. 将文件拖放到打开的 typescript 文件“yourFile.ts”的顶部

/// <reference path="../../../node_modules/@types/jquery/index.d.ts" />
....
... your typescript code here

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

关于javascript - 如何在 typescript 文件 (VS2015) 中引用 jQuery (intellisense),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42149342/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com