91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

小程序聊天室功能怎么實現

發布時間:2022-04-16 13:52:24 來源:億速云 閱讀:128 作者:iii 欄目:編程語言

這篇“小程序聊天室功能怎么實現”文章的知識點大部分人都不太理解,所以小編給大家總結了以下內容,內容詳細,步驟清晰,具有一定的借鑒價值,希望大家閱讀完這篇文章能有所收獲,下面我們一起來看看這篇“小程序聊天室功能怎么實現”文章吧。

首先在頭部定義 ...


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就是傳的播放地址

以上就是關于“小程序聊天室功能怎么實現”這篇文章的內容,相信大家都有了一定的了解,希望小編分享的內容對大家有幫助,若想了解更多相關的知識內容,請關注億速云行業資訊頻道。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

张家港市| 娄底市| 上林县| 黔西县| 烟台市| 和龙市| 辽阳市| 灵山县| 安多县| 清河县| 浮梁县| 百色市| 前郭尔| 三门县| 莱西市| 社旗县| 平阴县| 嘉善县| 清水河县| 大连市| 九寨沟县| 樟树市| 高阳县| 延川县| 兖州市| 正镶白旗| 明星| 即墨市| 栾城县| 剑河县| 闸北区| 水富县| 文昌市| 阜新市| 新乡县| 星子县| 景洪市| 阜平县| 孟州市| 平原县| 铅山县|