无法覆盖meanjs

时间:2015-07-22 07:32:10

标签: mean-stack mean.io

我想覆盖mean.io中的文章页面。我创建了一个模块注释,并在路由中添加了这段代码。

angular.module('mean.comments').config(['$stateProvider', '$viewPathProvider',
    function ($stateProvider, $viewPathProvider) {

        $stateProvider.state('comments example page', {
            url: '/comments/example',
            templateUrl: 'comments/views/index.html'
        });

        $viewPathProvider.override('articles/views/view.html', 'comments/views/article.html');

    }
]);

这里是comments/app.js

中的文章模块依赖注入
Comments.angularDependencies(['mean.articles']);

但这不起作用。有人可以帮我这么做吗?

0 个答案:

没有答案