如何设置AngularJS路由器的根位置?

前端之家收集整理的这篇文章主要介绍了如何设置AngularJS路由器的根位置?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我想从http://mysite.com/hello/world开始导航,而不是从站点根目录开始.

例如

$routeProvider
  .when('/myurl',{
    templateUrl: 'mytmpl.html',controller: 'MyCtrl'
  });

当我的网址是http://mysite.com/hello/world/myurl时应该做出反应

我怎么能这样做?

用户导航到http://example.com/hello/world时,将基本标记添加到正在提供的主HTML文件中:
<base href="/hello/world/" />

更多信息可以在Developer Guide / Using $location找到

原文链接:https://www.f2er.com/angularjs/141324.html

猜你在找的Angularjs相关文章