angularJs ui-routing(基本)

时间:2017-06-15 17:18:17

标签: angularjs angular-ui-router

  1. 我第一次使用AngularJs中的路由工作,我现在非常困难,因为我更改了文档并且首先它工作了然后它没有。那么我做错了什么?我也在为应用程序使用ui-routing。
  2. 所以现在是我的问题。让它发挥作用的最佳选择是什么。
  3. http://embed.plnkr.co/QtM3ucPn6R1cPgdPjEzp/这是我正在制作路由应用的地方。

1 个答案:

答案 0 :(得分:0)

Plunkr

 angular.module('helloworld', ['ui.router'])
.config(['$stateProvider','$urlRouterProvider',function($stateProvider,$urlRouterProvider){
    $stateProvider
    .state('home',{
        url : '/home',
        templateUrl : 'home.html'
    })

    .state('about',{
        url : '/about',
        templateUrl : 'about.html'
    })
    $urlRouterProvider.otherwise('/home');
}])

您的代码中存在小错误。您使用了错误的配置文件语法。遵循最佳做法。我已经参加了工作plunkr ..这是无错配置。希望这会对你有所帮助