Angular:成员不可调用

前端之家收集整理的这篇文章主要介绍了Angular:成员不可调用前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我将导入的函数分配给构造函数中的组件属性,以便在模板中使用它.

构建正确,但在我的编辑器(带有Angular语言服务的Visual Studio代码)中,显示以下错误.

下面是我导出的函数代码.

export function downloadFile(fileUrl: string,fileName: string) {
    let a = document.createElement('a');
    a.href = fileUrl;
    a.download = fileName;
    a.click();
}

下面是我在组件中的代码.

import { downloadFile } from '../../shared/utilities';

@Component({
    ...
})
export class SomeComponent {
    downloadFile: any;

    constructor() {
        this.downloadFile = downloadFile;
    }
}

我无法理解为什么会出现此错误.请帮忙!

我认为不是在组件文件中以这种方式声明下载文件

下载文件:任何;

你应该这样声明

downloadFile :()=>任何;

检查一下是否有帮助.

原文链接:https://www.f2er.com/angularjs/141327.html

猜你在找的Angularjs相关文章