按照教程列表,我需要创建一个 TS 文件。我已经按照本教程中的所有内容(以及之前的 16 个内容,使用 orchard cms 创建日历)
因此,如果您查看视频中的4.49,Ron 解释说去下载JQuery
(需要作为参考)。所以他告诉我们(但没有告诉我们)从这里下载 jquery.d.ts 文件,然后将其插入到项目中。
这一切都很好,但我找不到在哪里下载它。如果我单击jquery.d.ts
文本文档类型格式,则会在屏幕上显示该文件。因此,我尝试将文本复制到文件中并在本地保存到他在视频中提到的位置。
但这会引发 50 多个错误……所以我猜这是不正确的。谁能告诉我如何在我的项目中正确加载这个文件?
谢谢
编辑
好的,谢谢你们到目前为止的帮助......我没有意识到点击原始下载的文档。所以它的 d/l 并放置在与教程相同的位置,我得到了一些错误.....例如
async?: boolean; //boolean is flagging up as: any: the name boolean does not exist in the current scope.
interface JQueryXHR extends XMLHttpRequest, JQueryPromise<any> { //JQueryPromise does not exist in the current scope
//then there are a number of functions:
interface JQueryGenericPromise<T
interface JQueryPromise<T> {
interface JQueryDeferred<
etc...//all saying duplicate identifier interface expected ;
declare var jQuery: JQueryStatic;//the name JQueryStatic does not exist in the current scope
请记住,这是按原样下载的。我什么都没有改变。谢谢你的任何回复