axios.get(this.Globalstore.apiServer + "/fenlei").then((res) => { this.type = res.data;
时间: 2023-06-14 16:07:25 浏览: 57
axios.min.v0.17.1
这段代码是使用 axios 库向 API 服务器发送 GET 请求,请求地址为 "/fenlei",并将获取到的数据赋值给 this.type。其中,this.Globalstore.apiServer 是指向 API 服务器的地址,res.data 是指从服务器返回的数据。这段代码的作用是获取分类信息。
阅读全文