unicloud-call-function.uvue 1.8 KB
Newer Older
雪洛's avatar
雪洛 已提交
1 2 3
<template>
  <!-- #ifdef APP -->
  <scroll-view style="flex: 1">
4
  <!-- #endif -->
雪洛's avatar
雪洛 已提交
5 6 7 8 9 10 11 12
    <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>
        </view>
      </view>
    </view>
13
  <!-- #ifdef APP -->
雪洛's avatar
雪洛 已提交
14 15 16 17 18 19 20
  </scroll-view>
  <!-- #endif -->
</template>
<script>
  export default {
    data() {
      return {
雪洛's avatar
雪洛 已提交
21 22
        title: '请求云函数',
        callFunctionResult: {},
23 24
        callFunctionError: {},
        isUniTest: false
雪洛's avatar
雪洛 已提交
25 26 27 28 29
      }
    },
    onLoad() {
    },
    onUnload() {
30 31 32
      if(this.isUniTest){
        uni.hideToast()
      }
雪洛's avatar
雪洛 已提交
33 34
    },
    methods: {
35 36 37 38 39 40 41 42 43 44 45
      notify(content : string, title : string) {
        if (!this.isUniTest) {
          uni.showModal({
            title,
            content,
            showCancel: false
          })
        } else {
          uni.showToast({
            title: content
          })
46
          console.log(title, content)
47 48
        }
      },
雪洛's avatar
雪洛 已提交
49 50 51 52 53 54 55 56 57
      callFunction: function () {
        uni.showLoading({
          title: '加载中...'
        })
        uniCloud.callFunction({
          name: 'echo-cf',
          data: {
            num: 1,
            str: 'ABC'
雪洛's avatar
雪洛 已提交
58
          }
雪洛's avatar
雪洛 已提交
59
        }).then(res => {
雪洛's avatar
雪洛 已提交
60
          const result = res.result
雪洛's avatar
雪洛 已提交
61
          this.callFunctionResult = result
雪洛's avatar
雪洛 已提交
62 63
          console.log(JSON.stringify(result))
          uni.hideLoading()
64
          this.notify(result['showMessage'] as string, '提示')
雪洛's avatar
雪洛 已提交
65
        }).catch((err : any | null) => {
雪洛's avatar
雪洛 已提交
66
          const error = err as UniCloudError
雪洛's avatar
雪洛 已提交
67 68 69 70
          this.callFunctionError = {
            errCode: error.errCode,
            errMsg: error.errMsg
          }
雪洛's avatar
雪洛 已提交
71
          uni.hideLoading()
72
          this.notify(error.errMsg, '错误')
雪洛's avatar
雪洛 已提交
73 74 75 76 77 78 79
        })
      }
    }
  }
</script>

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