码迷,mamicode.com
首页 > 移动开发 > 详细

Vue-CLI项目-axios模块前后端交互(类似ajax提交)

时间:2019-08-31 23:48:05      阅读:254      评论:0      收藏:0      [点我收藏+]

标签:请求方式   失败   install   组件   npm   ram   main   out   ||   

08.31自我总结

Vue-CLI项目-axios前后端交互

一.模块的安装

npm install axios --save
#--save可以不用写

二.配置main.js

import axios from 'axios'
Vue.prototype.$axios = axios;

三.使用

created() {  // 组件创建成功的钩子函数
    // 拿到要访问课程详情的课程id
    let id = this.$route.params.pk || this.$route.query.pk || 1;
    this.$axios({
        url: `http://127.0.0.1:8000/course/detail/${id}/`,  // 后台接口
        method: 'get',  // 请求方式
    }).then(response => {  // 请求成功
        console.log('请求成功');
        console.log(response.data);
        this.course_ctx = response.data;  // 将后台数据赋值给前台变量完成页面渲染
    }).catch(error => {  // 请求失败
        console.log('请求失败');
        console.log(error);
    })
}

与ajax提交不同的一些设置

  • ajax 中的tyle这里是method
  • ajax中的success这里是them且不在大括号内后面接着.出来
  • catch请失败
  • 内容是在$axios之前

Vue-CLI项目-axios模块前后端交互(类似ajax提交)

标签:请求方式   失败   install   组件   npm   ram   main   out   ||   

原文地址:https://www.cnblogs.com/pythonywy/p/11440622.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!