我正在使用angularJS开展个人项目。我在网上下载了这个html模板,当我测试模板时,它运行得很好。问题是当我尝试使用ng-include将模板中的页面包含到我的项目中时,没有任何反应,没有错误,但也没有显示任何空白页面。 基本上我的项目结构如下:
src> app>模板> index.html(这是模板主页的位置)。
src> app>组件>主页> 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>
非常感谢你:)
答案 0 :(得分:0)
你需要放置模板的方式,如下所示:
<div ng-app = "" ng-controller = "homeController">
<div ng-include = "'/template/index.html'"> </div>
</div>