0

テストで多くのエラーを修正した後、カルマの出力は次のようになります。

PhantomJS 1.9.8 (Windows 8 0.0.0) コントローラー: MainCtrl はスコープに物事のリストを添付する必要があります 失敗しました
エラー: 予期しない要求: GET /api/marcas これ以上の要求は期待されていません ....

api/marcas は私が作成したエンドポイントです。MainCtrl のコード:

'use strict';

angular.module('app')
.controller('MainCtrl', function ($scope, $http, $log, socket, $location, $rootScope) {
    window.scope = $scope;
    window.rootscope = $rootScope
    $scope.awesomeThings = [];
    $scope.things = ["1", "2", "3"];



    $http.get('/api/things').success(function(awesomeThings) {
        $scope.awesomeThings = awesomeThings;
        socket.syncUpdates('thing', $scope.awesomeThings);
    });


    $scope.addThing = function() {   
        if($scope.newThing === '') {
            return;
        }


        $http.post('/api/things', { name: $scope.newThing });
        $scope.newThing = '';
    };

    $scope.deleteThing = function(thing) {
        $http.delete('/api/things/' + thing._id);
    };

    $scope.$on('$destroy', function () {
        socket.unsyncUpdates('thing');


    });



    $http.get('/api/marcas').success(function(marcas) {
        $scope.marcas = marcas;
        socket.syncUpdates('marcas', $scope.response);

        $scope.marcasArr = [];

        $scope.response.forEach(function(value) {
            $scope.marcas.push(value.name);
        });

        $scope.marcaSel = function() {
            for (i = 0; i < $scope.response.length; i++) {
                if ($scope.selectedMarca == $scope.response[i].name) {
                    $scope.modelos = $scope.response[i].modelos;
                };
            };      
        };



    });
4

1 に答える 1