如果我在电子邮件中设置链接以回复说出/密码/编辑路线,则会解析为“/”路线。
http://localhost:1337/#/password/edit?token=ZL6VusxDU
解析为
http://localhost:1337/#/?token=ZL6VusxDU
如果我在浏览器中单击然后它会正确解析到此路线:
$routeProvider.when('/password/edit', {
templateUrl: 'templates/password-edit',
controller: 'PasswordEditCtrl'
});
我正在使用ngRoute并尝试使用base(href='/')
和$locationProvider.html5Mode(true);
。任何帮助非常感谢。