在调用角度资源之后不加载角度页面

时间:2017-05-03 13:29:38

标签: javascript html angularjs

我正在为当地出租车公司使用角度制作一个Dispatchsystem。我不是角色及其所有功能的专业人士所以我需要一些帮助以下。我正在设置angular-route,所以我可以将html页面注入到主html文档中,然后我建立了一个工厂来请求我使用springboot用java编写的REST服务中的数据。在我成功收到我的数据后,我注意到我的测试页面没有加载,如果没有浏览器控制台给我任何错误。

这些是我的文件:

主要index.html:

<!DOCTYPE html>
<html lang="en">
    <head>
        <meta charset="UTF-8">
        <title>dispatch</title>

        <!--bootstrap stylesheet-->
        <link rel="stylesheet" href="node_modules/bootstrap/dist/css/bootstrap.min.css"/>

        <!--custom stylesheet-->
        <link rel="stylesheet" href="css/index.css"/>
    </head>
    <body ng-app="DispatchApp">

        <ng-view ng-controller="AppCtrl">

        </ng-view>


        <!--import libraries-->
        <script src="node_modules/angular/angular.min.js"></script>
        <script src="node_modules/angular-resource/angular-resource.min.js"></script>
        <script src="node_modules/angular-route/angular-route.min.js"></script>
        <script src="node_modules/jquery/dist/jquery.min.js"></script>
        <script src="node_modules/bootstrap/dist/js/bootstrap.min.js"></script>

        <!--application imports-->
        <script src="index.js"></script>
        <script src="modules/views/index.js"></script>
        <script src="modules/views/vehicles/index.js"></script>
        <script src="modules/services/index.js"></script>
        <script src="modules/services/api/index.js"></script>
        <script src="modules/services/api/vehicles/index.js"></script>
    </body>
</html>

我制作了一个测试html文件,看它是否加载到ng-view标签中 它只包含带有一些文本的p标记。

所有观点的主要控制者:

angular.module("DispatchApp.views",['ngRoute', 'DispatchApp.views.vehicles'])

    //Default Route
    .config(function($routeProvider) {
        $routeProvider.otherwise("/vehicles");
    })
    .controller('AppCtrl', ['$scope', function($scope){

    }]);

我的测试视图的控制器:

angular.module('DispatchApp.views.vehicles', ['ngRoute'])

.config(['$routeProvider', function($routeProvider) {
    $routeProvider.when('/vehicles',
    {
        templateUrl: 'modules/views/vehicles/index.html',
        controller: 'viewsVehiclesController',
        reloadOnSearch: false,
        resolve:
        {
            resolvedVehiclesListing: [ 'VehicleApi', function(VehicleApi)
            {
                return VehicleApi.query().$promise;
            }]
        }
    });

}])


.controller('viewsVehiclesController',['$scope', 'resolvedVehiclesListing', function ($scope, resolvedVehiclesListing)
{
    //console.log(resolvedVehiclesListing.data);
    //$scope.vehicles = resolvedVehiclesListing.data;
}])

api服务和我用来从后端获取数据的工厂:

angular.module('DispatchApp.services.api', ['ngResource', 'DispatchApp.services.api.vehicles'])
.service('PrefixService', [function()
{
    var prefix = 'http://localhost:8080/';
    var Prefix = function()
    {
        return prefix;
    };

    return {Prefix : Prefix};
}])
.factory('DispatchApiResource', ['$resource', 'PrefixService', function($resource, PrefixService)
{
    return function(endpoint, a, config)
    {
        return $resource(PrefixService.Prefix() + endpoint, a , config);
    };
}])
.factory('VehicleApi', ['DispatchApiResource', function(DispatchApiResource)
{
    return DispatchApiResource('vehicle/:id', null,
        {
            'query': {method: 'GET', isArray: false},
            'update': {method: 'PUT', params: {id: "@id"}}
        });
}]);

我不知道为什么测试html文件没有被注入到ng-view标签中,尽管从后端接收到数据,要显示的html文件正在我的bowser的网络选项卡中加载(谷歌浏览器),我在控制台中没有错误。

这是我的完整目录结构:

/dispatch-frontend
    index.html
    index.js
    /css
       index.css
    /modules
        /services
            index.js
            /api
                index.js
                /vehicles
                    index.js
        /views
            index.js
            /vehicles
                index.html
                index.js

很抱歉这篇文章很长,但我绝望了。

1 个答案:

答案 0 :(得分:0)

您有一个resolve功能,该功能需要VehicleApi服务,但该服务已在DispatchApp.services.api中注册,并且未在任何地方引用,因此解析将挂起:

angular.module('DispatchApp.services.api', ..)
.factory('VehicleApi', ['DispatchApiResource', function(DispatchApiResource)
{
    ..
}]);

我认为你忘了依赖你的api模块:

angular.module('DispatchApp.views.vehicles', [
    'ngRoute',
    'DispatchApp.services.api'
])