在微信小程序中調(diào)用函數(shù)的方式有哪些?很多新手對此不是很清楚,為了幫助大家解決這個難題,下面小編將為大家詳細講解,有這方面需求的人可以來學習下,希望你能有所收獲。
專注于為中小企業(yè)提供成都做網(wǎng)站、成都網(wǎng)站制作、成都外貿(mào)網(wǎng)站建設服務,電腦端+手機端+微信端的三站合一,更高效的管理,為中小企業(yè)尼元陽免費做網(wǎng)站提供優(yōu)質(zhì)的服務。我們立足成都,凝聚了一批互聯(lián)網(wǎng)行業(yè)人才,有力地推動了數(shù)千家企業(yè)的穩(wěn)健成長,幫助中小企業(yè)通過網(wǎng)站建設實現(xiàn)規(guī)模擴充和轉變。一、調(diào)取參數(shù)
直接調(diào)取當前js中的方法,
調(diào)取參數(shù)that.bindViewTap();
二、跳轉頁面
navigateTo: function () { wx.navigateTo({ url: '../page4/page4' }); }, 全局變量使用方法 a.js var app = getApp() Page({ data: { hex1: [], })} //設置全局變量 if (hex1 != null) { app.globalData.hex1 = hex1; } b.js 接收全局變量 var app = getApp() Page({ data:{ hex1:[] }, onLoad:function(options){ this.setData({ hex1:getApp().globalData.hex1 }); }, })
三、獲取事件的方法:
獲取事件的方法: bindViewTap1: function (e) { console.log('事件event',e) } 監(jiān)聽input方法 a.wxml頁面 <input type="number" maxlength="2" placeholder="小于100分鐘" placeholder-class="psection" bindinput="listenerTimeInput" /> a.js頁面 //監(jiān)聽input框輸入 listenerTimeInput: function (e) { this.data.time = e.detail.value; console.log('噠噠this.data.time', this.data.time) }, 獲取當前時間戳 var timestamp = Date.parse(new Date()); timestamp = timestamp / 1000; console.log("當前時間戳為:" + timestamp); 時間轉換為秒 var stime = ''; var format = ''; stime = time * 60; console.log('秒', stime); 轉換為時間 Date.prototype.format = function (format) { var date = { "M+": this.getMonth() +1, "d+": this.getDate(), "h+": this.getHours(), "m+": this.getMinutes(), "s+": this.getSeconds(), "q+": Math.floor((this.getMonth() +3) /3), "S+": this.getMilliseconds() }; if (/(y+)/i.test(format)) { format = format.replace(RegExp.$1, (this.getFullYear() +'').substr(4 - RegExp.$1.length)); } for (var kin date) { if (new RegExp("(" + k +")").test(format)) { format = format.replace(RegExp.$1, RegExp.$1.length == 1 ? date[k] : ("00" + date[k]).substr(("" + date[k]).length)); } } return format; } var oktime = ''; oktime = newDate.format('yyyy-MM-dd h:m:s'); //獲取當前時間 var date = new Date(); var seperator1 = "-"; var seperator2 = ":"; var month = date.getMonth() + 1; console.log('大大', month); var strDate = date.getDate(); if (month >= 1 && month <= 9) { month = "0" + month; } console.log('大大', month); if (strDate >= 0 && strDate <= 9) { strDate = "0" + strDate; } var currentdate = date.getFullYear() + seperator1 + month + seperator1 + strDate + " " + date.getHours() + seperator2 + date.getMinutes() + seperator2 + date.getSeconds(); console.log('當前時間', currentdate); console.log('年', date.getFullYear()); console.log('月', month); console.log('日', date.getDate()); console.log('時', date.getHours()) console.log('分', date.getMinutes()) 轉為串 oktime = oktime.toString(); 提取數(shù)值 var oktime = oktime.replace(/[^0-9]/ig, ""); console.log('oktime', oktime); 獲取年 月 日 時 分 秒 var year1 = '';var month2 ='';var date1 ='';var hours1 ='';var min1 =''; year1 = oktime.substring(2, 4); console.log('year1', year1); month2 = oktime.substring(4, 6); console.log('month2', month2); date1 = oktime.substring(6, 8); console.log('date1', date1); hours1 = oktime.substring(8, 10); console.log('hours1', hours1); min1 = oktime.substring(10, 12); console.log('min1', min1); 轉換為16進制 var zhen4000 = parseInt(zhen400); console.log('飛zhen4000', zhen4000) zhen4000 = zhen4000.toString(16); console.log('@@@@@zhen4000', zhen4000); 將值由16進制轉10進制 zhen1 = parseInt(zhen001, 16); // 進行異或運算 //注:我使用過16進制的異或運算,沒成功,最后使用了比較復雜的方法,由十六進制轉化為十進制異或運算,將得到的值在轉為十六進制 zhen9 = zhen1 ^ zhen2
四、點擊事件url傳值
點擊事件url傳值 wx.redirectTo({ url: '../page1/page1?deviceId='+title+'&name='+name, success: function(res){ // success }, .js傳值到.wxml頁面 js頁面 this.setData({ ntc: ntc, result: ntc }) wxml頁面 <rich-text class='tep'>{{ntc}}℃</rich-text> .wxml頁面bindtap點擊事件傳值到.js 頁面跳轉 監(jiān)聽id傳值 bindtap="bindViewTap1"值觸發(fā)到到js里面的bindViewTap1:function方法 .wxml <navigatorbindtap="bindViewTap1"id='time1'url="../page5/page5"hover-class="navigator-hover"> .js bindViewTap1: function (e) { //hex1 var id = e.currentTarget.id; console.log('坎坎坷坷擴id',id); } 設置跳出循環(huán) //跳出循環(huán),只運行一次 在data()里面添加 flag : '', 在你使用的方法里面加 var flag = true; if (flag) { that.bindViewTap3(); that.bindViewTap2(); flag = false; } 函數(shù)間傳值 //設置全局data data{rtime:''} btn1: function(e){ this.setData({ rtime : time }) } btn2:funciton(e){ console.log('###@@@@@#',this.data.rtime) }
看完上述內(nèi)容是否對您有幫助呢?如果還想對相關知識有進一步的了解或閱讀更多相關文章,請關注創(chuàng)新互聯(lián)行業(yè)資訊頻道,感謝您對創(chuàng)新互聯(lián)的支持。
文章題目:在微信小程序中調(diào)用函數(shù)的方式有哪些-創(chuàng)新互聯(lián)
網(wǎng)頁地址:http://jinyejixie.com/article38/diposp.html
成都網(wǎng)站建設公司_創(chuàng)新互聯(lián),為您提供搜索引擎優(yōu)化、做網(wǎng)站、營銷型網(wǎng)站建設、外貿(mào)網(wǎng)站建設、企業(yè)網(wǎng)站制作、網(wǎng)站營銷
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉載內(nèi)容為主,如果涉及侵權請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉載,或轉載時需注明來源: 創(chuàng)新互聯(lián)
猜你還喜歡下面的內(nèi)容