search

Home  >  Q&A  >  body text

angular.js - Angularjs 去掉# 怎么使状态追加到二级路径之后?

我现在有一个URL是这样的: http://172.25.186.1/wxHome/www/#/tabs/index
通过设置了$locationProvider.html5Mode(true);之后,理论上URL应该变成这样:http://172.25.186.1/wxHome/www/tabs/index
但是实际情况是这样的:http://172.25.186.1/tabs/index

路由配置如下:

 $stateProvider.
        state('kjk', {//框架页
            url: "/",
            controller: "KJK.rootController",
            templateUrl: baseUrl+"views/templates/kjk_Main.html"
        }).
        state('kjk.tabs', {//tabs框架页
            url: "tabs",
            controller: "KJK.tabsController",
            templateUrl: baseUrl+"views/templates/kjk_Tabs.html"
        }).
        state('kjk.tabs.index', {//首页
            url: "/index",
            views: {
                'index_tabs': {
                    controller: "KJK.index.indexController",
                    templateUrl: baseUrl+"views/kjk_index.html"
                }
            }
        })

HTML中

<base href="/" />

请问如何讲路由信息追加在我的http://172.25.186.1/wxHome/www/之后?

曾经蜡笔没有小新曾经蜡笔没有小新2744 days ago1045

reply all(3)I'll reply

  • 迷茫

    迷茫2017-05-15 16:55:39

    Change the content of base to:

    <base href="/wxHome/www/" />
    

    That’s it.

    reply
    0
  • phpcn_u1582

    phpcn_u15822017-05-15 16:55:39

    You can consider adding a base tag to the page

    reply
    0
  • 巴扎黑

    巴扎黑2017-05-15 16:55:39

    Is the problem solved?

    reply
    0
  • Cancelreply