繁体   English   中英

JavaScript错误函数期望的对象

[英]JavaScript error Object expected at function

我正在尝试使用VS2015,JavaScript,Angular,MVC 5构建应用程序。

这是我的JavaScript代码:

var myApp = angular.module('QuizApp', []);

myApp.controller('QuizController', ['$scope', function ($scope, $http) {
    $scope.answered = false;
    $scope.title = "loading question...";
    $scope.options = [];
    $scope.correctAnswer = false;
    $scope.working = false;

    $scope.answer = function () {
        return $scope.correctAnswer ? 'correct' : 'incorrect';
    };

    $scope.nextQuestion = function () {
        $scope.working = true;
        $scope.answered = false;
        $scope.title = "loading question...";
        $scope.options = [];

        $http({
            method: 'GET', url: "/api/trivia"
        }).then(function (response) {

            var data = response.data;
            var status = response.status;
            var headers = response.headers;
            var config = response.config;

            $scope.options = data.options;
            $scope.title = data.title;
            $scope.answered = false;
            $scope.working = false;
        }, function (response) {

            var data = response.data;
            var status = response.status;
            var headers = response.headers;
            var config = response.config;

            $scope.title = "Oops... something went wrong";
            $scope.working = false;

        });

    };

    $scope.sendAnswer = function (option) {
        $scope.working = true;
        $scope.answered = true;

        $http({
            method: 'POST',
            url: "/api/trivia",
            data: { 'questionId': option.questionId, 'optionId': option.id }
        }).then(function (response) {

            var data = response.data;
            var status = response.status;
            var headers = response.headers;
            var config = response.config;

            $scope.correctAnswer = (data === true);
            $scope.working = false;
        }, function (response) {

            var data = response.data;
            var status = response.status;
            var headers = response.headers;
            var config = response.config;

            $scope.title = "Oops... something went wrong";
            $scope.working = false;
        });


    }
}]);

当我尝试运行它时,我收到此错误:

TypeError:匿名函数的$ scope.nextQuestion( http:// localhost:63758 / Scripts / app / quiz-controller.js:21:9 )中的对象( http://ajax.googleapis.com/ajax/libs/ angularjs / 1.2.23 / angular.min.js:176:498 )angular.js(10061,11)

这是我使用函数nextQuestion()的地方:

 <div class="flip-container text-center col-md-12" ng-controller="QuizController" ng-init="nextQuestion()">
......
</div>

你注入$scope$http - 你应该有两个占位符:

myApp.controller('QuizController', ['$scope', '$http', function ($scope, $http) {
 ...
});

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM