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 30 31
      }
    },
    onLoad() {
    },
    onUnload() {
    },
    methods: {
32 33 34 35 36 37 38 39 40 41 42 43 44
      notify(content : string, title : string) {
        if (!this.isUniTest) {
          uni.showModal({
            title,
            content,
            showCancel: false
          })
        } else {
          uni.showToast({
            title: content
          })
        }
      },
雪洛's avatar
雪洛 已提交
45 46 47 48 49 50 51 52 53
      callFunction: function () {
        uni.showLoading({
          title: '加载中...'
        })
        uniCloud.callFunction({
          name: 'echo-cf',
          data: {
            num: 1,
            str: 'ABC'
雪洛's avatar
雪洛 已提交
54
          }
雪洛's avatar
雪洛 已提交
55 56
        }).then<void>(res => {
          const result = res.result
雪洛's avatar
雪洛 已提交
57
          this.callFunctionResult = result
雪洛's avatar
雪洛 已提交
58 59
          console.log(JSON.stringify(result))
          uni.hideLoading()
60 61
          this.notify(result['showMessage'] as string, '提示')
        }).catch<void>((err : any | null) => {
雪洛's avatar
雪洛 已提交
62
          const error = err as UniCloudError
雪洛's avatar
雪洛 已提交
63 64 65 66
          this.callFunctionError = {
            errCode: error.errCode,
            errMsg: error.errMsg
          }
雪洛's avatar
雪洛 已提交
67
          uni.hideLoading()
68
          this.notify(error.errMsg, '错误')
雪洛's avatar
雪洛 已提交
69 70 71 72 73 74 75
        })
      }
    }
  }
</script>

<style>
76
</style>