我有以下代码:

this.$(<string> button.className + ' input').bootstrapToggle('on');

打字稿给我这个错误:

error TS2339: Property 'bootstrapToggle' does not exist on type 'JQuery<HTMLElement>'.

我成功地解决了这个错误:

(<any> this.$(<string> button.className + ' input')).bootstrapToggle('on');

为什么声明元素为“ any”类型可以解决此错误?

最佳答案

这是因为bootstrapToggle不在jquery的声明文件中定义。

尝试通过在项目的.d.ts文件下添加此类型的声明来添加此定义

interface BootstrapToggleOptions {
    on?: string;

    off?: string;

    onstyle?: OnOffStyle;

    offstyle?: OnOffStyle;

    size?: Size;

    width?: number;

    height?: number;
}

type OnOffStyle = "default" | "primary" | "success" | "info" | "warning" | "danger";
type Size = "large" | "normal" | "small" | "mini";

interface JQuery {
    bootstrapToggle(): JQuery;

    bootstrapToggle(options?: BootstrapToggleOptions): JQuery;
}


不建议使用(<any> this.$(<string> button.className + ' input')) hack,它会打败键入点。

关于javascript - 为什么用未知方法声明类型<any>会解决错误? ( typescript ),我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/47872805/

10-12 01:50