1

我正在使用 angularJS 进行个人项目。我在线下载了这个 html 模板,当我测试该模板时,它运行良好。问题是,当我尝试使用 ng-include 将模板中的页面包含到我的项目中时,没有任何反应,没有错误,但也没有显示任何内容,只是一个空白页面。基本上我的项目结构如下:

  • src > app > template > index.html(这是模板主页的位置)。

  • src > app > components > home > home.component.html(我项目的主页)

基本上我想在 home.component.html 中包含 index.html,但是 ng-include 不起作用:/

这是我在 home.component.html 中的代码:

<div ng-app = "" ng-controller = "homeController">
  <div ng-include = "'/app/template/index.html'"> </div>
</div>

非常感谢您 :)

4

1 回答 1

0

你需要把模板的方式,像这样:

<div ng-app = "" ng-controller = "homeController">
    <div ng-include = "'/template/index.html'"> </div>
</div>
于 2018-02-07T19:05:26.747 回答