unicloud-call-function.uvue 2.8 KB
Newer Older
雪洛's avatar
雪洛 已提交
1 2
<template>
  <!-- #ifdef APP -->
H
hdx 已提交
3
  <scroll-view class="page-scroll-view">
4
  <!-- #endif -->
雪洛's avatar
雪洛 已提交
5 6 7 8 9
    <view>
      <page-head :title="title"></page-head>
      <view class="uni-padding-wrap uni-common-mt">
        <view class="uni-btn-v uni-common-mt">
          <button type="primary" @click="callFunction">请求云函数</button>
10
          <button type="primary" @click="callFunctionWithGeneric">请求云函数传入泛型</button>
雪洛's avatar
雪洛 已提交
11 12 13
        </view>
      </view>
    </view>
14
  <!-- #ifdef APP -->
雪洛's avatar
雪洛 已提交
15 16 17
  </scroll-view>
  <!-- #endif -->
</template>
H
hdx 已提交
18

雪洛's avatar
雪洛 已提交
19 20 21 22
<script>
  export default {
    data() {
      return {
雪洛's avatar
雪洛 已提交
23 24
        title: '请求云函数',
        callFunctionResult: {},
25
        callFunctionError: {},
26
        genericDemoShowMessage: '',
27
        isUniTest: false
雪洛's avatar
雪洛 已提交
28 29 30 31 32
      }
    },
    onLoad() {
    },
    onUnload() {
H
hdx 已提交
33
      if (this.isUniTest) {
34 35
        uni.hideToast()
      }
雪洛's avatar
雪洛 已提交
36 37
    },
    methods: {
38 39 40 41 42 43 44 45
      notify(content : string, title : string) {
        if (!this.isUniTest) {
          uni.showModal({
            title,
            content,
            showCancel: false
          })
        } else {
46
          console.log(title, content)
47 48
        }
      },
49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76
      async callFunctionWithGeneric() : Promise<void> {
        type EchoCfResult = {
          showMessage: string
        }
        uni.showLoading({
          title: '加载中...'
        })
        await uniCloud.callFunction<EchoCfResult>({
          name: 'echo-cf',
          data: {
            num: 1,
            str: 'ABC'
          }
        }).then(res => {
          const result = res.result
          uni.hideLoading()
          this.genericDemoShowMessage = result.showMessage
          this.notify(result.showMessage, '提示')
        }).catch((err : any | null) => {
          const error = err as UniCloudError
          this.callFunctionError = {
            errCode: error.errCode,
            errMsg: error.errMsg
          }
          uni.hideLoading()
          this.notify(error.errMsg, '错误')
        })
      },
H
hdx 已提交
77
      async callFunction() : Promise<void> {
雪洛's avatar
雪洛 已提交
78 79 80
        uni.showLoading({
          title: '加载中...'
        })
81
        await uniCloud.callFunction({
雪洛's avatar
雪洛 已提交
82 83 84 85
          name: 'echo-cf',
          data: {
            num: 1,
            str: 'ABC'
雪洛's avatar
雪洛 已提交
86
          }
雪洛's avatar
雪洛 已提交
87
        }).then(res => {
雪洛's avatar
雪洛 已提交
88
          const result = res.result
雪洛's avatar
雪洛 已提交
89
          this.callFunctionResult = result
雪洛's avatar
雪洛 已提交
90 91
          console.log(JSON.stringify(result))
          uni.hideLoading()
92
          this.notify(result['showMessage'] as string, '提示')
雪洛's avatar
雪洛 已提交
93
        }).catch((err : any | null) => {
雪洛's avatar
雪洛 已提交
94
          const error = err as UniCloudError
雪洛's avatar
雪洛 已提交
95 96 97 98
          this.callFunctionError = {
            errCode: error.errCode,
            errMsg: error.errMsg
          }
雪洛's avatar
雪洛 已提交
99
          uni.hideLoading()
100
          this.notify(error.errMsg, '错误')
雪洛's avatar
雪洛 已提交
101 102 103 104 105 106 107
        })
      }
    }
  }
</script>

<style>
雪洛's avatar
雪洛 已提交
108
</style>