0

我有一个非常大的模块化 AngularJS 应用程序。我将 Grunt 设置为使用 html2js 从多个 html 文件创建单个 JS 文件。

    html2js: {
        options: {
            base: 'dol',
            module: 'dol.templates',
            singleModule: true,
            useStrict: true,
            htmlmin: {
                collapseBooleanAttributes: true,
                collapseWhitespace: true,
                removeAttributeQuotes: true,
                removeComments: true,
                removeEmptyAttributes: true,
                removeRedundantAttributes: true,
                removeScriptTypeAttributes: true,
                removeStyleLinkTypeAttributes: true
            }
        },
        main: {
            src: ['app/modules/reporting/views/*.html'],
            dest: 'tmp/templates.js'
        }
    },

然后我在我的所有 js 文件和新创建的 templates.js 文件上运行 concat:

    concat: {
        options: {
            separator: ';'
        },

        dist: {
            src: ['tmp/*.js', 'app/app.js', 'app/app.controller.js', 'app/common/directives/directives.js', 'app/app.factory.js', 'app/modules/reporting/controllers/reports.controller.js', 'app/modules/reporting/reports.routes.js', 'app/xenon.custom.js'],
            dest: 'dist/app.js'
        }
    },

我现在有一个包含所有 js 文件和 html 文件的文件:app.js

我在 index.html 中引用了 dist/app.js 文件

我遇到的问题是在我的应用程序中,我引用了一些 HTML 文件,例如:

// Layout Related Directives
directive('reportsSummary', function () {
    return {
        restrict: 'E',
        templateUrl: appHelper.templatePath('modules/reporting/views/reportssummary.view')
    };
}).
directive('reportsSidebarMenu', function () {
    return {
        restrict: 'E',
        templateUrl: appHelper.templatePath('modules/reporting/views/reports.sidebar.menu')
    };
}).
directive('reportsFooter', function () {
    return {
        restrict: 'E',
        templateUrl: appHelper.templatePath('modules/reporting/views/reports.footer')
    };
});

当我运行已部署的应用程序时,我收到一条错误消息,指出它找不到这些文件。当我在本地运行我的应用程序时,它运行良好,因为文件位于正确的路径中。

问题是:部署应用程序时,我如何在我的代码中引用这些 html 文件,因为它们现在驻留在 dist/app.js 中

我还引用了 ui-router 中的 html 文件: (function () { 'use strict';

angular
    .module('dol')
    .config(reportsConfig);

reportsConfig.$inject = ['$stateProvider', '$urlRouterProvider'];

function reportsConfig($stateProvider, $urlRouterProvider) {
    $urlRouterProvider.otherwise('/reports');

    $stateProvider.state('reports',
        {
            url: '/reports',
            templateUrl: 'app/modules/reportspage/views/reports.view.html',
            controller: 'reportsController'
        });
}

})();

4

1 回答 1

0

尝试在您的 grunt 任务中使用 ngtemplates:

https://www.npmjs.com/package/grunt-angular-templates

于 2015-07-10T19:59:44.790 回答