request.js 948 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. /**
  2. * @param {String} cloudFnName
  3. * @param {String} operation 操作类型(增删改查)
  4. * @param {Object} data 请求参数
  5. * @param {Object} ext 附加参数
  6. */
  7. export const request = (cloudFnName, operation, data = {}, ext = {}) => new Promise((resolve, reject) => {
  8. if (ext.showLoading !== false) {
  9. uni.showLoading()
  10. }
  11. uniCloud.callFunction({
  12. name: cloudFnName,
  13. data: {
  14. operation,
  15. data
  16. }
  17. }).then((res) => {
  18. if (ext.showLoading !== false) {
  19. uni.hideLoading()
  20. }
  21. if (res.result.code != 200) {
  22. uni.showToast({
  23. icon: 'none',
  24. title: res.result.msg,
  25. duration: 2000
  26. })
  27. reject(res.result.msg)
  28. } else {
  29. console.log('requestResult', res)
  30. resolve(res.result.data)
  31. }
  32. })
  33. .catch((err) => {
  34. if (ext.showLoading !== false) {
  35. uni.hideLoading()
  36. }
  37. uni.showToast({
  38. icon: 'none',
  39. title: err.toString().replace('Error:', ''),
  40. duration: 2000
  41. })
  42. reject(err)
  43. })
  44. })