startRecode:function(){ var s = this; console.log("start"); wx.startRecord({ success: function (res) { console.log(res); var tempFilePath = res.tempFilePath; s.setData({ recodePath: tempFilePath, isRecode:true}); }, fail: function (res) { console.log("fail"); console.log(res); //錄音失敗 } }); }, endRecode:function(){//結束錄音 var s = this; console.log("end"); wx.stopRecord(); s.setData({ isRecode: false }); wx.showToast(); setTimeout(function () { var urls = app.globalData.urls + "/Web/UpVoice"; console.log(s.data.recodePath); wx.uploadFile({ url: urls, filePath: s.data.recodePath, name: 'file', header: { 'content-type': 'multipart/form-data' }, success: function (res) { var str = res.data; var data = JSON.parse(str); if (data.states == 1) { var cEditData = s.data.editData; cEditData.recodeIdentity = data.identitys; s.setData({ editData: cEditData }); } else { wx.showModal({ title: '提示', content: data.message, showCancel: false, success: function (res) { } }); } wx.hideToast(); }, fail: function (res) { console.log(res); wx.showModal({ title: '提示', content: "網絡請求失敗,請確保網絡是否正常", showCancel: false, success: function (res) { } }); wx.hideToast(); } }); },1000) }
頁面代碼:
<button type="primary" bindtouchstart="startRecode" bindtouchend="endRecode" class="cxbtn">按住錄音(可選)</button>微信
總結:錄音後要延遲加載,微信錄音後生成文件須要一段時間,若是不延遲加載可能沒法獲取到文件名 提示:uploadFile:localid is empty
網絡