当前位置:   article > 正文

axios安装与基本方法

axios安装

安装:

1.npm安装

npm install axios

2.在主入口文件main.js中引用:

  1. import axios from 'axios'
  2. Vue.use(axios);

3.在组件文件中的methods里使用:

  1. <template>
  2. <section class="jumbotron">
  3. <h3 class="jumbotron-heading">Search Github Users</h3>
  4. <div>
  5. <input type="text" placeholder="enter the name you search" v-model="keyWord"/>&nbsp;
  6. <button @click="searchUsers">Search</button>
  7. </div>
  8. </section>
  9. </template>
  10. <script>
  11. import axios from 'axios'
  12. export default {
  13. name:'Search',
  14. data() {
  15. return {
  16. keyWord:''
  17. }
  18. },
  19. methods: {
  20. searchUsers(){
  21. //请求前更新List的数据
  22. this.$bus.$emit('updateListData',{isLoading:true,errMsg:'',users:[],isFirst:false})
  23. axios.get(`https://api.github.com/search/users?q=${this.keyWord}`).then(
  24. response => {
  25. console.log('请求成功了')
  26. //请求成功后更新List的数据
  27. this.$bus.$emit('updateListData',{isLoading:false,errMsg:'',users:response.data.items})
  28. },
  29. error => {
  30. //请求后更新List的数据
  31. this.$bus.$emit('updateListData',{isLoading:false,errMsg:error.message,users:[]})
  32. }
  33. )
  34. }
  35. },
  36. }
  37. </script>

常用API:

1.get请求:查询数据,直接从后台获取数据,参数写在地址(url)里,第一个参数是url(API的一个地址,由后端提供);

2.post请求:添加数据,一般在填写表单并提交时,要将输入的数据写在数据库里,参数一般放在对象中;

3.put请求:修改数据

4.delete请求:删除数据

使用方式示例

1.执行get数据请求

  1. axios.get('url',{
  2. params:{
  3. id:'接口配置参数(相当于url?id=xxxx)'
  4. },
  5. })
  6. .then((res)=>{
  7. console.log(res); // 处理成功的函数 相当于success
  8. })
  9. .catch((error)=>{
  10. console.log(error) // 错误处理 相当于error
  11. })

2.执行post数据发送

  1. const data = {
  2. name:'张三',
  3. age:23
  4. }
  5. axios.post('url',data)
  6. .then((res)=>{
  7. console.log(res); // 处理成功的函数 相当于success
  8. })
  9. .catch((error)=>{
  10. console.log(error) // 错误处理 相当于error
  11. })

3.执行delete 数据发送

  1. // 如果服务端将参数作为java对象来封装接受
  2. axios.delete('demo/url', {
  3. data: {
  4. id: 123,
  5. name: 'Henry',
  6. },
  7. timeout: 1000,
  8. })
  9. // 如果服务端将参数作为url参数来接受,则请求的url为:www.demo/url?a=1&b=2形式
  10. axios.delete('demo/url', {
  11. params: {
  12. id: 123,
  13. name: 'Henry',
  14. },
  15. timeout: 1000
  16. })

4.执行put 数据发送

  1. axios.put('demo/url', {
  2. id: 123,
  3. name: 'Henry',
  4. sex: 1,
  5. phone: 13333333
  6. })

示例摘自:

 axios使用方法 - 简书

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/2023面试高手/article/detail/466078
推荐阅读
相关标签
  

闽ICP备14008679号