获取axios数据,报错报了500,排错时,首先考虑是否有启动服务器?
axios
·
<template>
<div class="app">
<button @click="getStudents">获取学生信息</button>
<button @click="showCars">获取汽车信息</button>
</div>
</template>
<script>
import axios from 'axios'
export default {
name: 'App',
methods: {
getStudents() {
axios.get('http://localhost:8080/atguigu/students').then(
response => {
console.log('请求成功', response.data);
},
error => {
console.log('请求失败', error.message);
}
)
},
showCars() {
axios.get('http://localhost:8080/demo/cars').then(
response => {
console.log('请求成功', response.data);
},
error => {
console.log('请求失败', error.message);
}
)
}
},
};
</script>
点击事件,报了500。表示服务器错误。
解决方案
找到写好的服务器,启动服务器即可。
数据完美获取。

DAMO开发者矩阵,由阿里巴巴达摩院和中国互联网协会联合发起,致力于探讨最前沿的技术趋势与应用成果,搭建高质量的交流与分享平台,推动技术创新与产业应用链接,围绕“人工智能与新型计算”构建开放共享的开发者生态。
更多推荐
所有评论(0)