Ng-include页面嵌套
Posted amanda-w
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Ng-include页面嵌套相关的知识,希望对你有一定的参考价值。
1.1. Ng-include页面嵌套
1.1.1. 功能介绍
点击页签,页签下的各页面不写在同一个html中,可以分成n个html并将其嵌套进入其中
1.1.2. 代码
(1) 分开在html和js中写
<ion-content id="content" style="bottom:60px;line-height:34px;margin-top: 50px;"> <div ng-include="testData" style="height: 600px;"></div> </ion-content> Js $scope.testData = "templates/HomePage/Person/personDetail/personDetailInfoReadOnly.html";
(2) 直接写在html中(谨记直接写在Ng-include里面的时候,双引号里面要有单引号)
<div ng-include="‘templates/HomePage/Person/personDetail/personDetailInfoReadOnly.html‘" style="height: 600px;"></div>
以上是关于Ng-include页面嵌套的主要内容,如果未能解决你的问题,请参考以下文章
原 ng-include用法分析以及多标签页面的简单实现方式
Express + AngularJS + HTML:ng-include 不起作用(404 - 找不到页面错误)