const app = getApp(); Page({ data: { info:'获取中...' }, onLoad: function (options) { this.setData({info:"获取中"}) wx.cloud.callFunction({name:"login"}) .then(res=>{ ; this.setData(res.result); }).catch(e=>{ this.setData({info:"获取失败"}); }) }, copy(){ if(this.data.openid) wx.setClipboardData({data: "openid: " + this.data.openid}); else this.onLoad(); } })