angularjs路由ui-router配置
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了angularjs路由ui-router配置相关的知识,希望对你有一定的参考价值。
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配置的主要内容,如果未能解决你的问题,请参考以下文章