logo
publist
写文章

简介

该用户还未填写简介

擅长的技术栈

可提供的服务

暂无可提供的服务

vue-cli3 axios

添加axios: vue add axiosmain.js中引入import axios from "axios";Vue.prototype.$axios = axios;get请求方式post请求方式axios.post('/api/news/matches', {page: 1,limit: 10,}).then((re...

vue报错Error in render: "TypeError: Cannot read property 'name' of undefined"

因为请求是异步获取数据,所以最先开始item是一个空对象。item.tournament即为undefined。item.tournament.name就会报错解决办法:加一个v-if的判断条件

到底了