您好,登錄后才能下訂單哦!
本文實(shí)例講述了微信小程序?qū)崿F(xiàn)添加手機(jī)聯(lián)系人功能。分享給大家供大家參考,具體如下:
1、效果展示
2、關(guān)鍵代碼
1)WXML文件
<view bindlongtap="phoneNumTap">{{phoneNum}}</view>
2)JS文件
Page({ data:{ phoneNum:'12345678901'//測(cè)試用的號(hào)碼,并非真實(shí)號(hào)碼 }, // 長(zhǎng)按號(hào)碼響應(yīng)函數(shù) phoneNumTap:function(){ var that=this; // 提示呼叫號(hào)碼還是將號(hào)碼添加到手機(jī)通訊錄 wx.showActionSheet({ itemList: ['呼叫','添加聯(lián)系人'], success:function(res){ if(res.tapIndex===0){ // 呼叫號(hào)碼 wx.makePhoneCall({ phoneNumber: that.data.phoneNum, }) }else if(res.tapIndex==1){ // 添加到手機(jī)通訊錄 wx.addPhoneContact({ firstName: 'test',//聯(lián)系人姓名 mobilePhoneNumber: that.data.phoneNum,//聯(lián)系人手機(jī)號(hào) }) } } }) } })
3)WXSS文件
view{ color: blue; padding: 15px; border-bottom: 1px solid gainsboro; }
3、完整實(shí)例代碼點(diǎn)擊此處本站下載。
希望本文所述對(duì)大家微信小程序開發(fā)有所幫助。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。