Angular ng-include 学习实例

Posted 飞凡123

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Angular ng-include 学习实例相关的知识,希望对你有一定的参考价值。

ng-include 可以引入外部的文件到当前视图中。这样可以增强复用性。 最简单的用法  <div ng-include src="‘/public/template/tpl.html‘"></div> 这样直接把tpl.html加载当前视图中了。 我们还可以使用如下定义个模板。id是模板名。如这里是"tpl/tpl1"

<script type="text/ng-template" id="tpl/tpl1">
       <p>我是模板内容</p>
</script> 

这样的话可以直接使用ng-include="‘tpl/tpl1‘"。来调用这个模块。

官网文档:script

在使用时要注意的几点: 1. 引入ng-include="‘tpl/tpl1‘"。因为模板名是字符串,要是单引号括起来,如果写成ng-include="tpl/tpl1" 会将tpl/tpl1解析成变量,导致引入无效。 2. 使用ng-include src="‘url‘"  src属性中的地址不能跨域。ng默认只能是同一域名和http协议下的文件才能成功引入。这里涉及到跨域就不讨论了。

See the Pen Angular ng-include学习 by finley (@mafeifan) on CodePen.

以上是关于Angular ng-include 学习实例的主要内容,如果未能解决你的问题,请参考以下文章

使用 ng-include 作为父节点时,使用 jquery 禁用所有子元素的 Angular 指令不起作用

AngularJs学习笔记——ng-include

AngularJS ng-include不起作用

Webpack:对 ng-include 使用 require

angularjs1- ng-include

AngularJS ng-include 不起作用