analyze.js 370 B

123456789101112131415
  1. //解析二维码链接
  2. function setDataUrl(url) {
  3. let q = url;
  4. const data = {
  5. type: q.slice(q.indexOf("type=") + 5, q.indexOf('&')),
  6. id: q.slice(q.lastIndexOf('=') + 1),
  7. name: q.slice(q.lastIndexOf('fbrand=') + 7, q.lastIndexOf('&'))
  8. }
  9. wx.setStorageSync('qrCodeMsg', data);
  10. return data;
  11. }
  12. module.exports = {
  13. setDataUrl
  14. }