我想覆盖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']);
但这不起作用。有人可以帮我这么做吗?