1
我正在App中創建一個在播放音頻的應用程序中使用的應用程序。我正在使用cordova-plugin-media
播放音頻。在Android的音樂是不是在玩,並在瀏覽器,它拋出一個ReferenceError
:ReferenceError:媒體未在Ionic App中定義
ReferenceError: Media is not defined
at ChildScope.$scope.playAudio (observationCtrl.js:4)
at fn (eval at compile (ionic.bundle.js:26325), <anonymous>:4:218)
at ionic.bundle.js:62239
at ChildScope.$eval (ionic.bundle.js:29026)
at ChildScope.$apply (ionic.bundle.js:29125)
at HTMLAnchorElement.<anonymous> (ionic.bundle.js:62238)
at HTMLAnchorElement.eventHandler (ionic.bundle.js:16451)
at triggerMouseEvent (ionic.bundle.js:2906)
at tapClick (ionic.bundle.js:2895)
at HTMLDocument.tapTouchEnd (ionic.bundle.js:3022)
有沒有在我的代碼或ionic1任何問題,不支持此插件。 我的播放音頻代碼:
$scope.playAudio = function(src) {
var media = new Media(src, null, null, mediaStatusCallback);
media.play();
};