我没有在我的角度应用程序中工作

时间:2014-05-30 07:13:23

标签: angularjs

对于我的角度应用程序,我想使用$ locationProvider.html5Mode(true)从URL中删除“#”符号。 我也用过,但它不起作用。

我的index.html在标题部分包含“”。

我的app.js如下。

$routeProvider
    .when('/signIn', {
        controller: 'signInController',
        templateUrl: 'html/views/sign-in.html'

    })
    .when('/login', {
        controller: 'LoginController',
        templateUrl: 'html/views/log-in.html'
    })


    .otherwise({ redirectTo: '/login' });

     $locationProvider.html5Mode(true);

我的所有代码(html和脚本)都在App目录下。但是,当我试图运行我的登录页面时,没有加载。

0 个答案:

没有答案