angular ng-include 不工作

angular ng-include not working

这是我的 html 的一部分,我试图在其中包含另一个 HTML 文件 "content.html" 但它不起作用。源中的那些地址是正确的,但我仍然无法实现它。

  <!DOCTYPE html>
  <html lang="en">
  <head>

   <!-- Basic Page Needs
  –––––––––––––––––––––––––––––––––––––––––––––––––– -->
  <meta charset="utf-8">
  <title>Your page title here :)</title>
  <meta name="description" content="">
  <meta name="author" content="">
 <!-- Scripts
 –––––––––––––––––––––––––––––––––––––––––––––––––– -->
 <script type="text/javascript" src="js\jquery-3.0.0.min.js"></script>
 <script type="text/javascript" src="js/angular.min.js"></script>
  </head>
  <body>
  <div ng-include src="'content.html'"></div>
  </body>
  </html>

这是我的content.html

  <div class="container">
  <h1>Heading!</h1>
  </div>

您应该将 ng-app="" 添加到您的页面 html 标记中,这样 angular 就会在页面上启动。之后将开始遍历页面并收集所有指令并编译它们。

<html lang="en" ng-app="">

src 代替 ng-include 您也可以直接在 ng-include 属性中传递模板值。

<div ng-include="'content.html'">

Demo Plunkr