RecorderManager.onError

解释: 录音错误事件, 会回调错误信息。
Web 态说明: Web 态环境不支持录音相关功能,该事件不会触发。

方法参数

Function callback

示例

跳转编辑工具

在开发者工具中打开

在 WEB IDE 中打开

扫码体验

代码示例

百度智能小程序

请使用百度APP扫码

图片示例

RecorderManager.onError - 图2

代码示例

  • JS
  1. Page({
  2. onShow() {
  3. const recorderManager = swan.getRecorderManager();
  4. recorderManager.onError(function(e) {
  5. swan.showModal({
  6. title: 'onError success',
  7. content: JSON.stringify(e)
  8. });
  9. });
  10. const options = {
  11. duration: 10000,
  12. sampleRate: 44100,
  13. numberOfChannels: 1,
  14. encodeBitRate: 96000,
  15. format: 'aac'
  16. };
  17. recorderManager.start(options);
  18. this.recorderManager = recorderManager;
  19. }
  20. });