IIS未加载.css文件

时间:2015-10-28 20:21:28

标签: iis server

您好我刚刚开始为我的IIS项目使用AngularJS服务器。

所以我的问题是我的项目加载了角度,但不加载.css文件,既不是我自己的文件也不加载引导文件。

我看过大胖网,我注意到大多数解决方案是检查static content中的Windows features。然而,这已经为我打勾了。我想知道是否还有其他解决方案?

enter image description here


的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>


文件树

  • 资产
  • 样式
    • 的main.css
    • nav.css
  • LIB
  • 角-1.4.7
    • angular.min.js
    • 角-UI-router.min.js
  • 自举-3.3.5-DIST
    • CSS
      • bootstrap.min.css
  • 的index.html
  • core.js


加载到浏览器的文件

enter image description here

1 个答案:

答案 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"