我想在Angular 2 Component中使用FitVids JQuery插件。我试图在jquery.d.ts文件中的JQuery接口中添加fitVids函数,但是我收到错误。我正在使用打字稿。谢谢大家!
我使用了GitHub上的这个jquery.d.ts文件。我将其修改为:
[...]
queue(queueName: string, callback: Function): JQuery;
fitVids(selector?: any, opts?: any): JQuery;
}
declare module "jquery" {
export = $;
}
declare var jQuery: JQueryStatic;
declare var fitVids: JQueryStatic;
我得到的错误是:
EXCEPTION: EXCEPTION: Error during instantiation of Articolo!.
ORIGINAL EXCEPTION: TypeError: jQuery(...).fitVids is not a function
答案 0 :(得分:1)
您遇到的问题来自编译时和运行时
之间的区别通过将fitvids
添加到.d.ts
文件,您正在为编译时
然而,在运行时,您的应用程序正在寻找该定义的实现,但它无法找到。
您需要将fitvids的.js
文件添加到index.html
页面
<script src="path/to/fitvids.js"></script>