首页 文章

TS2339:类型上不存在属性

提问于
浏览
2

我在WebStorm 2016.2.2中将js文件转换为ts .

我有以下代码段:

///<reference path="./typings/globals/node/index.d.ts" />

global.base_dir = __dirname;

global.abs_path = function(path) {
    return global.base_dir + path;
};
global.include = function(file) {
    return require(global.abs_path('/' + file));
};

base_dirabs_pathinclude 产生错误:

TS2339:属性'global_dir'在类型'Global'TS2339上不存在:属性'abs_path'在类型'Global'上不存在TS2339:属性'include'在'Global'类型上不存在

所以我将它们添加到'Global'界面如下:

///<reference path="./typings/globals/node/index.d.ts" />

declare namespace NodeJS{
    interface Global {
        base_dir: string;
        abs_path: (path: string) => string;
        include: (file: string) => string;
    }
}

global.base_dir = __dirname;

global.abs_path = function(path) {
    return global.base_dir + path;
};
global.include = function(file) {
    return require(global.abs_path('/' + file));
};

它确实消除了这些错误 .

然后,我继续转换文件的其余部分,我必须从express导入 RequestResponse ,所以我添加了以下内容:

///<reference path="./typings/modules/express/index.d.ts" />

import {Request, Response} from "~express/lib/express";

所以现在整个片段是这样的:

///<reference path="./typings/globals/node/index.d.ts" />
///<reference path="./typings/modules/express/index.d.ts" />

import {Request, Response} from "~express/lib/express";

declare namespace NodeJS{
    interface Global {
        base_dir: string;
        abs_path: (path: string) => string;
        include: (file: string) => string;
    }
}

global.base_dir = __dirname;

global.abs_path = function(path) {
    return global.base_dir + path;
};
global.include = function(file) {
    return require(global.abs_path('/' + file));
};

不幸的是,添加 import 语句已经返回TS2339错误,所以我再次卡住:

TS2339:属性'global_dir'在类型'Global'TS2339上不存在:属性'abs_path'在类型'Global'上不存在TS2339:属性'include'在'Global'类型上不存在

BTW Express与此错误无关 . 我试图从其他模块导入,它产生了同样的错误 . 当我至少有一个 import 语句时,就会发生这种情况

有人知道我该如何解决它?

任何帮助将深表感谢!

1 回答

相关问题