http.js 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. export const path = `${location.origin}/service`
  2. // get方法
  3. export function get(url, data = {}) {
  4. url = path + url;
  5. return new Promise((resolve, reject) => {
  6. uni.request({
  7. url,
  8. data,
  9. header: {
  10. 'Cache-Control': 'no-cache'
  11. },
  12. success(res) {
  13. if(res.statusCode === 200){
  14. resolve(res.data);
  15. }else{
  16. reject();
  17. uni.showToast({
  18. icon: 'none',
  19. title: '请求数据失败!'
  20. });
  21. }
  22. },
  23. fail(err) {
  24. reject();
  25. uni.showToast({
  26. icon: 'none',
  27. title: '请求数据失败!'
  28. });
  29. }
  30. })
  31. });
  32. }
  33. // post方法
  34. export function post(url, data = {}) {
  35. url = path + url;
  36. return new Promise((resolve, reject) => {
  37. uni.request({
  38. method: 'POST',
  39. url,
  40. data,
  41. header: {
  42. 'Cache-Control': 'no-cache'
  43. },
  44. success(res) {
  45. if(res.statusCode === 200){
  46. resolve(res.data);
  47. }else{
  48. reject();
  49. uni.showToast({
  50. icon: 'none',
  51. title: '请求数据失败!'
  52. });
  53. }
  54. },
  55. fail(err) {
  56. reject();
  57. uni.showToast({
  58. icon: 'none',
  59. title: '请求数据失败!'
  60. });
  61. }
  62. })
  63. });
  64. }