我正在使用https://github.com/angular-fullstack/generator-angular-fullstack中的yeoman生成器generator-angular-fullstack
我使用创建了一个项目
yo angular-fullstack
然后,我想在我使用过的应用中添加一条新路线
yo angular-fullstack:route myroute
我可以看到正在生成的新文件,如下面的屏幕快照所示
我在myroute.js中看到了
angular.module('invoice1App')
.config(function ($routeProvider) {
$routeProvider
.when('/myroute', {
templateUrl: 'app/myroute/myroute.html',
controller: 'MyrouteCtrl'
});
});
但是每当我尝试打开localhost:port / myroute时,我都会被重定向回首页。自最近两天以来,我无法弄清楚。任何帮助将不胜感激。
最佳答案
您已经错过了/#/尝试localhost:port /#/ myroute