我对html和css没有经验,在使用ui-view时,我的网站样式存在问题。
我试图将我的侧导航栏和标题放入一个ui视图中,然后我的侧导航栏似乎丢失了一些样式。我不明白为什么,因为html是相同的,除了使用ui-view指令。
<body data-ng-app="app" id="app" class="app" data-custom-page data-ng-controller="AppCtrl">
<div id="loader-container"></div>
<header ng-include=" 'client/app/layout/header.html' " id="header" class="header-container "></header>
<div class="main-container">
<aside data-ng-include=" 'client/app/layout/sidebar.html' " id="nav-container" class="nav-container"></aside>
<div id="content" class="content-container">
<section data-ui-view class="view-container {{main.pageTransition.class}}"></section>
</div>
</div>
当侧边栏和标题的代码在index.html中时,它看起来很好。但是当我将它移动到一个单独的html文件并使用ui-view时,该网站裸露然后变为水平
<body data-ng-app="app" id="app" class="app" data-custom-page data-ng-controller="AppCtrl">
<div id="loader-container"></div>
<ui-view></ui-view> <-- renders the same code as above