小程序
小游戏
企业微信
微信支付
扫描小程序码分享
如何在小程序中,暂停某个函数事件暂停运行,当触发改变某个变量后,可以继续执行?
4 个回答
加粗
标红
插入代码
插入链接
插入图片
上传视频
你是指在触发执行某一函数的时候,其他函数暂时无法执行或者销毁其他函数吗?如果是这样的话,我这里给出官方提供的方案。
文档地址:https://developers.weixin.qq.com/miniprogram/dev/framework/view/wxml/event.html#%E4%BA%8B%E4%BB%B6%E8%AF%A6%E8%A7%A3
你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。
搞个定时器,闭包特性。
理论上讲js没有暂停的功能
是什么场景有这种需要?
fenxiangEvent: function(event) {
wx.showLoading({
title: '下载中...',
})
this.xiazaiEvent(0)
wx.hideLoading()
wx.showModal({
title: '图片下载已完成',
content: '您可以打开朋友圈粘贴文字,按顺序从手机中选取图片发布!',
showCancel: false,
confirmText: "好的"
},
xiazaiEvent: function(index) {
if (index => 9) {
return
}
console.log(index) //控制台打印不出任何东西
console.log(this.data.tupian[index])
wx.getImageInfo({
src: this.data.tupian[index],
success(res) {
wx.saveImageToPhotosAlbum({
filePath: res.path,
console.log("第" + index + "张,正在下载")
this.xiazaiEvent(index + 1)
complete(res) {
console.log("第" + index + "张,下载完成")
我试着用了递归,不行啊! 脑壳疼,兄弟帮忙看看
关注后,可在微信内接收相应的重要提醒。
请使用微信扫描二维码关注 “微信开放社区” 公众号
你是指在触发执行某一函数的时候,其他函数暂时无法执行或者销毁其他函数吗?如果是这样的话,我这里给出官方提供的方案。
文档地址:https://developers.weixin.qq.com/miniprogram/dev/framework/view/wxml/event.html#%E4%BA%8B%E4%BB%B6%E8%AF%A6%E8%A7%A3
搞个定时器,闭包特性。
理论上讲js没有暂停的功能
是什么场景有这种需要?
这个帖子的问题~! 搞来搞去,搞不定,我想在success接口调用成功的回调函数中,设置一个暂停,然后在complete 接口调用结束函数中,再执行循环!
fenxiangEvent: function(event) {
wx.showLoading({
title: '下载中...',
})
this.xiazaiEvent(0)
wx.hideLoading()
wx.showModal({
title: '图片下载已完成',
content: '您可以打开朋友圈粘贴文字,按顺序从手机中选取图片发布!',
showCancel: false,
confirmText: "好的"
})
},
xiazaiEvent: function(index) {
if (index => 9) {
return
}
console.log(index) //控制台打印不出任何东西
console.log(this.data.tupian[index])
wx.getImageInfo({
src: this.data.tupian[index],
success(res) {
wx.saveImageToPhotosAlbum({
filePath: res.path,
success(res) {
console.log("第" + index + "张,正在下载")
this.xiazaiEvent(index + 1)
},
complete(res) {
console.log("第" + index + "张,下载完成")
this.xiazaiEvent(index + 1)
}
})
}
})
}
我试着用了递归,不行啊! 脑壳疼,兄弟帮忙看看
fenxiangEvent: function(event) {
wx.showLoading({
title: '下载中...',
})
for (var index = 0; index < 9; index++) {
wx.getImageInfo({
src: this.data.tupian[index],
success(res) {
wx.saveImageToPhotosAlbum({
filePath: res.path,
success(res) {
console.log(res)
},
complete(res){
kaiguan = 1
console.log("下载结束"+index)
console.log(res)
}
})
}
})
}
this.xiazaiEvent(0)
wx.hideLoading()
wx.showModal({
title: '图片下载已完成',
content: '您可以打开朋友圈粘贴文字,按顺序从手机中选取图片发布!',
showCancel: false,
confirmText: "好的"
})
}
是不是这个???? 这个可以保存,但是会出现,我说的图片顺序出错的问题