angular.module('app', ['ui.router']);
var app = angular.module('app');
app.controller('MainController', ['$scope', function ($scope) {
var vm = this;
}]);
app.config(function($stateProvider, $urlRouterProvider){
$urlRouterProvider.otherwise('/home');
$stateProvider
.state('home', {
url: '/home',
templateUrl: '/app/components/home/home.html',
controller:'HomeController',
controllerAs:'homeCtrl'
})
.state('home.csharp', {
url: '/csharp',
templateUrl: '/app/components/home/csharp.html',
controller: function ($scope) {
},
controllerAs: ''
})
我无法关联home.csharp.
的模板网址。但是网址栏中的网址仍会发生变化,但视图不会改变。