在打字稿中找不到名称“ fetch”和“ Header”

时间:2019-04-11 19:35:59

标签: typescript fetch

我在我的有角项目中使用访存,代码段如下:

        fetch(
            'www.example.com', {
            headers: new Headers({
            'Origin': location.origin
            }),
            mode: 'cors'
        })

但是,该网站运行正常,但出现以下错误: 错误TS2304:找不到名称“提取”。 错误TS2304:找不到名称“标题”。

我搜索了解决此问题的方法并尝试添加 tsconfig.json的“ compilerOptions”中的[lib]:[“ es5”,“ dom”]如下所示,但是出现了相同的错误。我也尝试在其中添加“ es6”,但是没有运气。 我没主意了,请您帮忙。

"compilerOptions": {
        "lib": [ "es5", "dom"],
        "target": "es5",
        "module": "system",
        "moduleResolution": "node",
        "sourceMap": true,
        "inlineSources": true,
        "emitDecoratorMetadata": true,
        "experimentalDecorators": true,
        "noImplicitAny": false,
        "allowUnreachableCode": true
    },

0 个答案:

没有答案