Skip to content

Instantly share code, notes, and snippets.

@juzhiyuan
Created August 15, 2019 09:16
Show Gist options
  • Save juzhiyuan/debba9448c65d8ffac108e4739006573 to your computer and use it in GitHub Desktop.
Save juzhiyuan/debba9448c65d8ffac108e4739006573 to your computer and use it in GitHub Desktop.
const generateQR = data => new Promise((resolve, reject) => {
wx.downloadFile({
url: `https://XXXX/wxacodeunlimit?data=${encodeURI(JSON.stringify(data))}`,
success: res => {
console.log(res)
resolve(res.tempFilePath)
},
fail: () => {
reject()
},
})
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment