我有像这样的文件夹结构
dashboard (folder)
-- index.html
route.js
index.html
我的index.html
我将ui-view
<head>
<style type="text/css">
h1{color:red}
</style>
</head>
<body>
<ui-view></ui-view>
</body>
然后在route.js
我有
var app = angular.module('cartApp', ['ui.router']);
app.config(['$stateProvider','$urlRouterProvider','$locationProvider', function($stateProvider, $urlRouterProvider, $locationProvider) {
$locationProvider.html5Mode(true);
$stateProvider
.state('dashboard', {
url: '/dashboard',
templateUrl: 'dashboard/index.html'
})
}]);
但是当我去localhost:3000/dashboard
时,我看到h1
没有颜色。它无法加载其父级的'东西'。知道为什么吗?