NgCordova:未捕获的ReferenceError:$ cordovaOauth未定义

时间:2016-10-09 16:10:29

标签: javascript angularjs cordova ionic-framework ngcordova

我在Cordova / Ionic应用程序中使用ngCordova。构建它后我收到此错误消息:

  

未捕获的ReferenceError:$ cordovaOauth未定义

的index.html

Screenshot of index.html

app.js

app.js app.js2

此外,如果我点击登录按钮

<div class="button button-block button-positive"ng-controller="modalController" ng-click="facebookLogin()">Facebook Login</div>

我会收到另一条错误消息。

错误

errors

这是函数所在的位置

控制器

.controller('modalController', ['$scope', '$ionicModal', '$firebase', '$ionicHistory', '$state', '$cordovaOauth', '$localStorage', '$sessionStorage','$location', function ($scope, $ionicModal, $firebase, $ionicHistory, $state, $cordovaOauth, $localStorage, $sessionStorage, $location) {
$ionicModal.fromTemplateUrl('templates/register.html', {
    scope: $scope,
    animation: 'slide-in-up',
    backdropClickToClose: false,
    hardwareBackButtonClose: false,
    focusFirstInput: true
}).then(function (modal) {
    $scope.modal = modal;
});

$scope.$on('$ionicView.beforeEnter', function (event, viewData) {
    viewData.enableBack = true;
    console.log(viewData.enableBack);
});

$scope.goBack = function () {
    $ionicHistory.goBack();
    console.log("back pressed");
};

/*Notice that after a successful login, the access token is saved and we are redirected to our profile.  The access token will be used in every future API request for the application.*/
$scope.facebookLogin = function () {
    $cordovaOauth.facebook("1234", ["email", "read_stream", "user_website", "user_location", "user_relationships"]).then(function (result) {
        $localStorage.accessToken = result.access_token;
        $location.path("/profile");
    }, function (error) {
        alert("There was a problem signing in!  See the console for logs");
        console.log(error);
    });
};

我不明白这个错误,所有文件都已到位,我进行了所有注射。我在这里缺少什么?

1 个答案:

答案 0 :(得分:0)

经过几天研究解决方案很快就完成了。

注入$ cordovaOauth

注入$cordovaOauth是正确的。如果您分析.run函数的正文,则会发现$ionicPlatform函数调用,该调用已注入.run。因此,为此注入$cordovaOauth,+1是合乎逻辑的。

在模块中添加ngCordova

真的让我厌恶官方文档,他们要么在更改后立即更新文档,要么在细节方面变得草率。我必须在ngCordova中添加app.module

这解决了问题但又创建了另一个问题。

希望这有帮助