真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

微信小程序動態(tài)生成二維碼的實(shí)現(xiàn)代碼

效果圖如下:

創(chuàng)新互聯(lián)專注于企業(yè)網(wǎng)絡(luò)營銷推廣、網(wǎng)站重做改版、寶興網(wǎng)站定制設(shè)計(jì)、自適應(yīng)品牌網(wǎng)站建設(shè)、H5場景定制、商城網(wǎng)站建設(shè)、集團(tuán)公司官網(wǎng)建設(shè)、成都外貿(mào)網(wǎng)站制作、高端網(wǎng)站制作、響應(yīng)式網(wǎng)頁設(shè)計(jì)等建站業(yè)務(wù),價格優(yōu)惠性價比高,為寶興等各大城市提供網(wǎng)站開發(fā)制作服務(wù)。

微信小程序動態(tài)生成二維碼的實(shí)現(xiàn)代碼

實(shí)現(xiàn)

wxml



  



  

wxss

.container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.container image {
  width: 686rpx;
  height: 686rpx;
  background-color: #f9f9f9;
}
.canvas-box {
  position: fixed;
  top: 999999rpx;
  left: 0;
}

js

var QR = require("../../../lib/qrcode.js");
Page({
  /**
   * 頁面的初始數(shù)據(jù)
   */
  data: {
    canvasHidden: false,
    imagePath: '',
  },
  /**
   * 生命周期函數(shù)--監(jiān)聽頁面加載
   */
  onLoad: function(options) {
    //option為上個頁面?zhèn)鬟f過來的參數(shù)
    var jiaoyanCode = 'sorry,jiaoyanCode is loss';
    if (options) {
      jiaoyanCode = options.jiaoyanCode;
    }
    console.log(jiaoyanCode);
    var size = this.setCanvasSize(); //動態(tài)設(shè)置畫布大小 
    this.createQrCode(jiaoyanCode, "mycanvas", size.w, size.h);   
  },
  //適配不同屏幕大小的canvas
  setCanvasSize: function() {
    var size = {};
    try {
      var res = wx.getSystemInfoSync();
      var scale = 750 / 686; //不同屏幕下canvas的適配比例;設(shè)計(jì)稿是750寬 686是因?yàn)闃邮絯xss文件中設(shè)置的大小
      var width = res.windowWidth / scale;
      var height = width; //canvas畫布為正方形
      size.w = width;
      size.h = height;
    } catch (e) {
      // Do something when catch error
      console.log("獲取設(shè)備信息失敗" + e);
    }
    return size;
  },
  /**
   * 繪制二維碼圖片
   */
  createQrCode: function(url, canvasId, cavW, cavH) {
    //調(diào)用插件中的draw方法,繪制二維碼圖片
    QR.api.draw(url, canvasId, cavW, cavH);
    setTimeout(() => {
      this.canvasToTempImage();
    }, 1000);
  },
  /**
   * 獲取臨時緩存照片路徑,存入data中
   */
  canvasToTempImage: function() {
    var that = this;
    //把當(dāng)前畫布指定區(qū)域的內(nèi)容導(dǎo)出生成指定大小的圖片,并返回文件路徑。
    wx.canvasToTempFilePath({
      canvasId: 'mycanvas',
      success: function(res) {
        var tempFilePath = res.tempFilePath;
        console.log(tempFilePath);
        that.setData({
          imagePath: tempFilePath,
          // canvasHidden:true
        });
      },
      fail: function(res) {
        console.log(res);
      }
    });
  },
  /**
   * 點(diǎn)擊圖片進(jìn)行預(yù)覽
   */
  previewImg: function (e) {
    var img = this.data.imagePath;
    console.log(img);
    wx.previewImage({
      current: img, // 當(dāng)前顯示圖片的http鏈接
      urls: [img] // 需要預(yù)覽的圖片http鏈接列表
    });
  },
})

qrcode.js 可以去 這里 下載。

詳細(xì)源碼請查看 https://github.com/demi520/wxapp-qrcode

總結(jié)

以上所述是小編給大家介紹的微信小程序動態(tài)生成二維碼的實(shí)現(xiàn)代碼,希望對大家有所幫助,如果大家有任何疑問請給我留言,小編會及時回復(fù)大家的。在此也非常感謝大家對創(chuàng)新互聯(lián)網(wǎng)站的支持!


網(wǎng)站名稱:微信小程序動態(tài)生成二維碼的實(shí)現(xiàn)代碼
標(biāo)題網(wǎng)址:http://weahome.cn/article/pcdpgh.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部