对不起,如果我的英语根本不完美。

我正在使用$ ionicPlatform.onHardwareBackButton与屏幕方向插件一起使用,以在播放Youtube视频时从视图返回时将方向更改为纵向,这是我正在做的示例:

app.controller('nameCtrl', ['$ionicPlatform', function('$ionicPlatform') {

    $scope.openVideo = function(id) {
        var isVideoPlaying = true;

        // some stuff here

        if(isVideoPlaying) {
            $ionicPlatform.onHardwareBackButton(function() {
                screen.lockOrientation('portrait');
                isVideoPlaying = false;
                alert('going back');
            });
        } // in this line i get an error "TypeError: object is not a function" from GapDebug
    }

}]);


onHardwareBackButton检测效果完美,但是当我不播放视频时,也会调用回调函数。不知道为什么不使用布尔部分。有什么帮助吗?抱歉,这是一个愚蠢的问题。

我尝试在基于GapDebug的错误行中使用分号,但一无所获。

提前致谢

最佳答案

尝试这样的事情:

app.controller('nameCtrl', ['$ionicPlatform', function('$ionicPlatform') {

    $scope.openVideo = function(id) {
        var isVideoPlaying = true;

        // some stuff here
        $ionicPlatform.onHardwareBackButton(function() {

            if(isVideoPlaying) {
                screen.lockOrientation('portrait');
                isVideoPlaying = false;
                alert('going back');
            } // in this line i get an error "TypeError: object is not a function" from GapDebug
        });

    }

}]);

08-18 23:45