【发布时间】:2021-11-09 00:54:05
【问题描述】:
我正在尝试联系 API,但是当我使用 axios.create() 时,我收到一条错误消息:
Property 'create' does not exist on type 'typeof import("Stuff/Stuff/Stuff/My_app/Frontend/app/node_modules/axios/index")
代码:
import axios from "axios";
//Error here:
axios.create({
baseURL:"http://MyFantasticAPI.com(Not a real api)"
});
【问题讨论】:
-
Seems to work fine for me 你确定你已经在你的环境中安装了这个模块吗? (通过
npm、yarn等) -
无论如何我都会尝试谢谢!
标签: reactjs typescript axios frontend