5***@qq.com
5***@qq.com
  • 发布:2024-03-28 11:24
  • 更新:2024-03-28 12:12
  • 阅读:341

为什么调用云对象时会有一个默认的"加载中..."提示且无法用uni.showLoading自定义提示语

分类:uniCloud

点击按钮,执行云对象的方法。本来我以为提示是要我自己写uni.showLoading,再在收到数据后uni.hideLoading的,但是我一点按钮,页面上自动就有一个“加载中..."的提示。我尝试在请求之前自己写uni.showLoading,根本没用。
前端代码:
register() {
uni.showLoading({ // 这里不生效。
title: '注册中...'
})
cloudObj.registerByPassword(this.mobile, this.password).then(res => {
uni.hideLoading()
})
}
后端代码:
async registerByPassword(mobile, password) {
return 'test'
}

2024-03-28 11:24 负责人:无 分享
已邀请:

最佳回复

DCloud_uniCloud_VK

DCloud_uniCloud_VK

引入云对象的时候可以这样引入

uniCloud.importObject('云对象名', {  
    customUI: true // 取消自动展示的交互提示界面  
})  

多加一个 customUI: true

  • 5***@qq.com (作者)

    非常感谢!

    2024-03-28 13:16

要回复问题请先登录注册