您好,登錄后才能下訂單哦!
這篇“小程序聊天室功能怎么實現”文章的知識點大部分人都不太理解,所以小編給大家總結了以下內容,內容詳細,步驟清晰,具有一定的借鑒價值,希望大家閱讀完這篇文章能有所收獲,下面我們一起來看看這篇“小程序聊天室功能怎么實現”文章吧。
首先在頭部定義 ...
1.index.js 使用的是微信自帶的api,首先在頭部定義一個 const recorderManager = wx.getRecorderManager()//獲取全局唯一的錄音管理器const createInnerAudioContext = wx.createInnerAudioContext()//由于使用的是wx.getRecorderManager錄音,所以在播放錄音的時候需要使用此api播放錄音 // 需要用戶同意授權錄音 方法 _checkRecordAuth(cbOk, cbError) { wx.getSetting({ success: (res) => { if (!res.authSetting['scope.record']) { wx.authorize({ scope: 'scope.record', success: (res) => { // 用戶已經同意小程序使用錄音功能,后續調用 wx.startRecord 接口不會彈窗詢問 console.log('同意', res); }, fail: res => { console.log('拒絕', res); cbError && cbError(); } }) } else { cbOk && cbOk(); } } }) }, // 長按 _longClickVoicebtn(e) { var that = this; that._checkRecordAuth( () => { //調出取消彈窗 that.setData({ text: '松開 發送', isShowVoice1: true, singleVoiceTimeCount: 0, duration: "00:00", is_clock: true,//長按時應設置為true,為可發送狀態 startPoint: e.touches[0],//記錄觸摸點的坐標信息 }); //開始錄音 recorderManager.start(options); recorderManager.onStart(()=>{ let date = new Date(); let s = date.getTime();//注意:使用的是當前的時間戳 - 時長 console.log(s); //記錄時長 that.data.timer = setInterval(() => { let voiceTimeCount = (new Date()).getTime() - s voiceTimeCount = voiceTimeCount/1000 that.setData({ duration: formatSecond(voiceTimeCount), singleVoiceTimeCount: voiceTimeCount }) }, 100); }) }, (res) => { //錄音失敗 console.error('錄音拒絕授權'); clearInterval(this.data.timer); this._endRecord(); wx.showModal({ title: '您未授權語音功能', content: '暫時不能使用語音', confirmText: '去設置', success: res => { if (res.confirm) { wx.openSetting({ success: res => { if (res.authSetting['scope.record']) { } } }); } else { } } }); }); },// 移動 如果移動到tabar上面了,就顯示 松開手指,取消發送 _sendVoiceMoveEvent(e) { //計算距離,當滑動的垂直距離大于 tabBarHeight 時,則取消發送語音 if (Math.abs(e.touches[0].clientY - this.data.startPoint.clientY) > this.data.tabBarHeight) { this.setData({ is_clock: false,//設置為不發送語音 isShowVoice2: true, isShowVoice1: false, cance: 1, //已取消 }) } else { this.setData({ is_clock: true,//設置為不發送語音 isShowVoice2: false, isShowVoice1: true, cance: 0, //不取消 }); } }, // 松開div 錄音結束 _sendVoiceMoveEndEvent(e) { console.log('松開div 錄音結束') var that = this clearInterval(this.data.timer); that.setData({ text: '按住 說話', isShowVoice1: false, isShowVoice2: false, singleVoiceTimeCount: 0, duration: "00:00" }); recorderManager.stop()//結束錄音 //對停止錄音進行監控 recorderManager.onStop((res) => { //此時先判斷是否需要發送錄音 if (that.data.is_clock == true) { console.log('發送語音') //對錄音時長進行判斷,少于2s的不進行發送,并做出提示 if (res.duration < 1000) { that.showToast("錄音時間太短,請長按錄音"); } else { //進行語音發送 const { tempFilePath, duration, fileSize } = res; wx.showLoading({ title: '上傳中...', mask: true }) uploadFile(tempFilePath).then(res => { console.log(res); this._sendMessage({ commentContent: res, orgId: that.data.orgId, resId: that.data.childId, commentContentType: "audio", fileSize: fileSize, fileTime: parseInt(duration/1000) }) }) } } }) }, 2.wxml中,給view添加上 <view catch:longpress="_longClickVoicebtn" catch:touchmove="_sendVoiceMoveEvent" catch:touchend="_sendVoiceMoveEndEvent"hover-class="btn-voice-press"> |
3、index.js 播放錄音
createInnerAudioContext.autoplay = truecreateInnerAudioContext.src = src //src就是傳的播放地址
以上就是關于“小程序聊天室功能怎么實現”這篇文章的內容,相信大家都有了一定的了解,希望小編分享的內容對大家有幫助,若想了解更多相關的知識內容,請關注億速云行業資訊頻道。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。