Vue中如何实现封装请求方法

2024年06月12日 建站教程

import Axios from './config'

export function get(url, params = {}) {
  return new Promise((resolve, reject) => {
    Axios.get(url, {
        params: params
      })
      .then(response => {
        resolve(response.data)
      })
      .catch(error => {
        reject(error)
      })
  })
}

PS:'./config'代码,请查看《Vue中如何实现Axios封装》

本文链接:http://so.lmcjl.com/news/6414/

展开阅读全文
相关内容