博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
angularJs之template指令
阅读量:5280 次
发布时间:2019-06-14

本文共 1038 字,大约阅读时间需要 3 分钟。

  • template:

    如果我们只需要在ng-view 中插入简单的HTML 内容,则使用该参数:

    .when('/computers',{
    template:'这是电脑分类页面'})
  • templateUrl:

    如果我们只需要在ng-view 中插入HTML 模板文件,则使用该参数:

    $routeProvider.when('/computers', { templateUrl: 'views/computers.html', });

例 template指令

<!DOCTYPE html>

<html>
<head>
<meta charset="utf-8">
<script src="https://cdn.static.runoob.com/libs/angular.js/1.4.6/angular. min.js"></script>
</head>
<body ng-app="myApp">
<runoob-directive></runoob-directive><!-- E元素-->
<div class="runoob- directive"></div><!-- C样式-->
<div runoob-directive></div><!-- A属性-->
<!-- directive: runoob-directive --><!- - M注释-->
<script>
var app = angular.module("myApp", []);
app.directive("runoobDirective", function() {
return {
restrict : "ACEM",//A属性C样式E元素M注释
replace : true,
template : "<h1>自定义指令222!</h1>"=======页面中显示的是这里的内容,包括标签,如果这里的标签与内容越来越多,会难以维护。
};
});
</script>
</body>
</html>

====以上指令内容是被标签包围起来的,如果标签越来越多,维护不方便,书写也困难,解决以上问题,将template的内容写在一个页面上,这里的内容不再是内容,而是一个页面的地址。

也就相当于路由的页面跳转的这个功能了

 

转载于:https://www.cnblogs.com/songyunxinQQ529616136/p/6214140.html

你可能感兴趣的文章
git 常见报错
查看>>
AngularJS Select(选择框)
查看>>
【java】JDK、JRE、JVM的关系
查看>>
Oracle集群(RAC)时间同步(ntp和CTSS)
查看>>
实时读取进度条当前进度
查看>>
洛谷P1219八皇后(正向暴力递归dfs+回溯更新,全排列类型题)
查看>>
IIS常见500错误解决方案
查看>>
SQLAlchemy
查看>>
得到python某个模块的路径
查看>>
rest-framework之权限组件
查看>>
19.unicode在python中的运用
查看>>
总结移动端页面开发时需要注意的一些问题
查看>>
servlet中 getRealPath deprecated(被废弃)
查看>>
招聘,项目管理相关
查看>>
UIScreen的scale属性
查看>>
Oracle Scheduler - Postponed job
查看>>
Arduino编程器 USBasp USBtinyISP FT232-ISP 对比 区别
查看>>
高频焊台源码,改进版V2
查看>>
宝塔面板安装的mysql5.5用命令行kill -9后启动不了
查看>>
Android(java)学习笔记118:BroadcastReceiver之 外拨电话的广播接收者
查看>>