包括 html 模板,ng-include 不起作用
including html template, ng-include doesn't work
我正在使用 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>
非常感谢:)
你只需要按照模板的方式放,像这样:
<div ng-app = "" ng-controller = "homeController">
<div ng-include = "'/template/index.html'"> </div>
</div>
我正在使用 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>
非常感谢:)
你只需要按照模板的方式放,像这样:
<div ng-app = "" ng-controller = "homeController">
<div ng-include = "'/template/index.html'"> </div>
</div>