码迷,mamicode.com
首页 > Web开发 > 详细

angularjs路由ui-router配置

时间:2017-07-22 16:52:36      阅读:183      评论:0      收藏:0      [点我收藏+]

标签:template   config   log   UI   class   javascrip   app   url   conf   

var myApp = angular.module("myApp", [‘ui.router‘]);
myApp.config([‘$stateProvider‘, ‘$urlRouterProvider‘,‘$locationProvider‘,
function ($stateProvider, $urlRouterProvider, $locationProvider) {
    $urlRouterProvider.when("", "/one");
    $stateProvider
    .state("one", {
        url:"/one",
        views: {
            "":{templateUrl: ‘view/one.html‘}
        }
    })
    .state("two", {
        url:"/two",
        views: {
            "":{templateUrl: ‘view/two.html‘}
        }

    })
    .state("three", {
        url:"/three",
        templateUrl: "view/three.html"
    });
    $locationProvider.html5Mode(true);
}]);

  

angularjs路由ui-router配置

标签:template   config   log   UI   class   javascrip   app   url   conf   

原文地址:http://www.cnblogs.com/huangtonghui/p/7221451.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!