当前位置:   article > 正文

uniapp 配置请求代理+请求封装_uniapp 请求代理

uniapp 请求代理

uniapp官网提供了三种方式:什么是跨域 | uni-app官网

1. 通过uniapp自带浏览器 打开项目是不存在跨域的

·

第二种方式: 

  1. "h5" : {
  2. "template" : "static/index.html",
  3. "devServer": {
  4. "proxy": {
  5. "/api": {
  6. "target": "http://192.168.31.162:8288",
  7. "changeOrigin": true
  8. }
  9. }
  10. },
  11. "router" : {
  12. "mode" : "hash", // 路由模式
  13. "base" : "./"
  14. },
  15. "sdkConfigs" : {
  16. "maps" : {
  17. "amap" : {
  18. "key" : "ca8cde9d6d4d6658826713d31d3df9c2",
  19. "securityJsCode" : "",
  20. "serviceHost" : ""
  21. }
  22. }
  23. }
  24. }

uniapp 请求封装

  1. import store from '@/store'
  2. import config from '@/config'
  3. import { getToken } from '@/utils/auth'
  4. import errorCode from '@/utils/errorCode'
  5. import { toast, showConfirm, tansParams } from '@/utils/common'
  6. let timeout = 10000
  7. const baseUrl = config.baseUrl
  8. const request = config => {
  9. // 是否需要设置 token
  10. const isToken = (config.headers || {}).isToken === false
  11. config.header = config.header || {}
  12. if (getToken() && !isToken) {
  13. config.header['Authorization'] = 'Bearer ' + getToken()
  14. }
  15. // get请求映射params参数
  16. if (config.params) {
  17. let url = config.url + '?' + tansParams(config.params)
  18. url = url.slice(0, -1)
  19. config.url = url
  20. }
  21. return new Promise((resolve, reject) => {
  22. uni.request({
  23. method: config.method || 'get',
  24. timeout: config.timeout || timeout,
  25. url: config.baseUrl || baseUrl + config.url,
  26. data: config.data,
  27. header: config.header,
  28. dataType: 'json'
  29. }).then(response => {
  30. let [error, res] = response
  31. if (error) {
  32. toast('后端接口连接异常')
  33. reject('后端接口连接异常')
  34. return
  35. }
  36. const code = res.data.code || 200
  37. const msg = errorCode[code] || res.data.msg || errorCode['default']
  38. if (code === 401) {
  39. showConfirm('登录状态已过期,您可以继续留在该页面,或者重新登录?').then(res => {
  40. if (res.confirm) {
  41. store.dispatch('LogOut').then(res => {
  42. uni.reLaunch({ url: '/pages/login' })
  43. })
  44. }
  45. })
  46. reject('无效的会话,或者会话已过期,请重新登录。')
  47. } else if (code === 500) {
  48. toast(msg)
  49. reject('500')
  50. } else if (code !== 200) {
  51. toast(msg)
  52. reject(code)
  53. }
  54. resolve(res.data)
  55. })
  56. .catch(error => {
  57. let { message } = error
  58. if (message === 'Network Error') {
  59. message = '后端接口连接异常'
  60. } else if (message.includes('timeout')) {
  61. message = '系统接口请求超时'
  62. } else if (message.includes('Request failed with status code')) {
  63. message = '系统接口' + message.substr(message.length - 3) + '异常'
  64. }
  65. toast(message)
  66. reject(error)
  67. })
  68. })
  69. }
  70. export default request

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

闽ICP备14008679号