点击按钮,执行云对象的方法。本来我以为提示是要我自己写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'
}
5***@qq.com
- 发布:2024-03-28 11:24
- 更新:2024-03-28 12:12
- 阅读:341
5***@qq.com (作者)
非常感谢!
2024-03-28 13:16