您好我刚刚开始为我的IIS
项目使用AngularJS
服务器。
所以我的问题是我的项目加载了角度,但不加载.css
文件,既不是我自己的文件也不加载引导文件。
我看过大胖网,我注意到大多数解决方案是检查static content
中的Windows features
。然而,这已经为我打勾了。我想知道是否还有其他解决方案?
的index.html
<!doctype html>
<html ng-app="SimPlannerApp">
<head>
...
<!-- Load Bootstrap CSS library -->
<link type="text/css" href="lib/bootstrap-3.3.5-dist/css/bootstrap.min.css">
<!-- Load AngularJS modules -->
<script src="lib/Angular-1.4.7/angular.min.js"></script>
<script src="lib/Angular-1.4.7/angular-ui-router.min.js"></script>
<!-- Load AngularJS Application -->
<script src="core.js"></script>
<!-- Our CSS -->
<link type="text/css" href="assets/styles/main.css">
<link type="text/css" href="assets/styles/nav.css">
</head>
<body>
...
<!-- This is where page content is inserted to -->
<div ui-view></div>
</body>
</html>
文件树
加载到浏览器的文件
答案 0 :(得分:2)
我团队中的一个人找到了解决方案。在引用样式表时,我忘记了每个样式表之后的Cookie cookie = new Cookie.Builder("name", "value")
.domain(".mydomain.com")
.expiresOn(new Date(2015, 10, 28))
.isHttpOnly(true)
.isSecure(false)
.path("/mypath")
.build();
driver.manage().addCookie(cookie);
。
所以这个
<body class="NewEmpBody">
<p>New Employee Proposed To Project Before Entered Into OpenAir</p>
<form:form commandName="myForm" modelAttribute="myForm">
<table>
<tr>
<td>First Name:</td>
<td><form:input path="employee.firstName" /></td>
<td>Middle Initial:</td>
<td><form:input path="employee.middleInitial" /></td>
</tr>
<tr>
<td>Last Name:</td>
<td><form:input path="employee.lastName" /></td>
</tr>
<tr>
<td>Client :</td>
<td><form:select path="client.text">
<form:option value="NONE" label="--- Select ---" />
<form:options items="${resultBoard.getFilteredResultsClients()}" />
</form:select>
</td>
</tr>
<tr>
<td colspan="3"><input type="submit" value="Submit" /></td>
</tr>
</table>
</form:form>
</body>
应该是这个
rel="stylesheet"