微信小程序實現二維碼生成器
一、項目展示
項目是一個簡單實用的二維碼生成器。
使用者可以在生成器中輸入文字生成二維碼,也可以在識別器中識別二維碼的內容
二、項目核心代碼
二維碼生成
// pages/home/home.js Page({ data:{ qrMsg: '', recognizeMsg: '', isShowMsg: false, isShowResult: false, showClear: true, }, onLoad:function(options){ // 頁面初始化 options為頁面跳轉所帶來的參數 this.setData({ isShowMsg: false, isShowResult: true, }) }, onReady:function(){ // 頁面渲染完成 }, onShow:function(){ // 頁面顯示 }, onHide:function(){ // 頁面隱藏 }, onUnload:function(){ // 頁面關閉 }, // 生成二維碼 makeQrcode: function(e) { this.setData({ isShowMsg: false, isShowResult: true, }) console.log(this.data.qrMsg + "傢") if (this.data.qrMsg == "") { wx.showToast({ title: '二維碼內容不能為空', icon: 'loading', duration: 500 }) return } var that = this wx.navigateTo({ url: '../main/main?msg=' + that.data.qrMsg, success: function(res){ // success }, fail: function() { // fail }, complete: function() { // complete } }) }, bindInput: function(e) { console.log(e.detail.value) this.setData({ qrMsg: e.detail.value }) if (this.data['qrMsg'].length > 1) { this.setData({ showClear: false }) } else { this.setData({ showClear: true }) } }, // 清空 bindClearAll: function(res) { wx.redirectTo({ url: '../home/home', }) }, // 識別二維碼 recognizeCode: function() { this.setData({ isShowMsg: true, isShowResult: false, recognizeMsg: "", }) var that = this wx.scanCode({ success: function(res){ // success console.log(res) that.setData({ recognizeMsg: res["result"] }) }, fail: function() { // fail }, complete: function() { // complete } }) }, })
<!--pages/home/home.wxml--> <view class="container-box"> <!--生成器--> <view class="home-section"> <view class="home-section-title" bindtap="makeQrcode"> <text class="home-section-title-make">生成器</text> <image class="home-next-btn" src="../../images/next.png"></image> </view> <view hidden="{{isShowMsg}}"> <textarea maxlength="-1" bindinput="bindInput" class="recognize-content" placeholder="請輸入二維碼的文本內容"/> <view class="home-clear"><text hidden="{{showClear}}" bindtap="bindClearAll">CLEAR</text></view> </view> </view> <!--識別器--> <view class="home-section"> <view class="home-section-title" bindtap="recognizeCode"> <text class="home-section-title-recognize">識別器</text> <image class="home-next-btn" src="../../images/next.png"></image> </view> <view hidden="{{isShowResult}}" class="recog-text"> <textarea maxlength="-1" value="{{recognizeMsg}}" class="recognize-content"/> </view> </view> </view>
到此這篇關於微信小程序實現二維碼生成器的文章就介紹到這瞭,更多相關小程序二維碼生成器內容請搜索WalkonNet以前的文章或繼續瀏覽下面的相關文章希望大傢以後多多支持WalkonNet!
推薦閱讀:
- 微信小程序實現登錄頁面
- 微信小程序怎麼加入JavaScript腳本,做出動態效果
- 微信小程序實現簡單的購物車功能
- 微信小程序scroll-view實現上拉加載數據重復的解決方法
- 微信小程序實現手寫簽名(簽字版)