http.api.js 828 B

1234567891011121314151617181920212223242526272829
  1. import {
  2. apiurl
  3. } from "./apiurl.js"
  4. // 此处第二个参数vm,就是我们在页面使用的this,你可以通过vm获取vuex等操作,更多内容详见uView对拦截器的介绍部分:
  5. const install = (Vue, vm) => {
  6. let httpMap = {}
  7. const http = uni.$u.http
  8. // 循环请求路径对象生成对应的方式请求
  9. Object.keys(apiurl).forEach((key) => {
  10. if(apiurl[key]?.type=='get'){
  11. httpMap[key] = (data = {}, config = {}) => http[apiurl[key]?.type](apiurl[key]?.url, {params:data}, config);
  12. }else{
  13. httpMap[key] = (params = {}, config = {}) => http[apiurl[key]?.type](apiurl[key]?.url, params, config);
  14. }
  15. });
  16. // 将各个定义的接口名称,统一放进对象挂载到vm.$u.api(因为vm就是this,也即this.$u.api)下
  17. vm.$u.api = {
  18. ...httpMap
  19. };
  20. }
  21. export default {
  22. install
  23. }