<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。表示服务器错误。

解决方案

找到写好的服务器,启动服务器即可。
在这里插入图片描述
在这里插入图片描述
数据完美获取。

Logo

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

更多推荐