我的目的就是想把剪切板的内容放到textarea中我觉得wx.getClipboardData这个方法应该是异步的下面这样写一直都是空的所以我用promise封装了一下想在then中再赋值但是我在then中处理this.setData时发现this.data.copy2还是空的是我promise写的不对吗constapp=getApp()Page({data:{copy:'',copy2:''},test(){wx.getClipboardData({success:function(res){this.copy2=res.data}})console.log(this.data.copy2)//一直都是空的this.setData({copy:this.data.copy2})},onLoad:function(){this.test()}})封装后test(){returnnewPromise((resolve,reject)=>{wx.getClipboardData({success:function(res){this.copy2=res.dataresolve()}})})}onLoad:function(){this.test().then(()=>{console.log(this.data.copy2)this.setData({copy:this.data.copy2})})}
添加回答
举报
0/150
提交
取消