博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Creating Directives that Communicate
阅读量:5134 次
发布时间:2019-06-13

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

Hello

Lorem ipsum dolor sit amet

World

Mauris elementum elementum enim at suscipit.

counter: {

{i || 0}}

angular.module('docsTabsExample', []).directive('myTabs', function() { return { restrict: 'E', transclude: true, scope: {}, controller: function($scope) { var panes = $scope.panes = []; $scope.select = function(pane) { angular.forEach(panes, function(pane) { pane.selected = false; }); pane.selected = true; }; this.addPane = function(pane) { if (panes.length === 0) { $scope.select(pane); } panes.push(pane); }; }, templateUrl: 'my-tabs.html' };}).directive('myPane', function() { return { require: '^myTabs', restrict: 'E', transclude: true, scope: { title: '@' }, link: function(scope, element, attrs, tabsCtrl) { tabsCtrl.addPane(scope); }, templateUrl: 'my-pane.html' };});my-tabs.html:
my-pane.html:

 

angular.module('docsTabsExample', []).directive('myPane', function() {  return {    require: ['^myTabs', '^ngModel'],    restrict: 'E',    transclude: true,    scope: {      title: '@'    },    link: function(scope, element, attrs, controllers) {      var tabsCtrl = controllers[0],          modelCtrl = controllers[1];      tabsCtrl.addPane(scope);    },    templateUrl: 'my-pane.html'  };});

 

转载于:https://www.cnblogs.com/xiaotaiyang/p/4831418.html

你可能感兴趣的文章
QML学习笔记之一
查看>>
WPF中实现多选ComboBox控件
查看>>
ionic2+ 基础
查看>>
MyBaits动态sql语句
查看>>
用户空间与内核空间,进程上下文与中断上下文[总结]
查看>>
JAVA开发环境搭建
查看>>
Visual Studio基于CMake配置opencv1.0.0、opencv2.2
查看>>
SDN第四次作业
查看>>
django迁移数据库错误
查看>>
Data truncation: Out of range value for column 'Quality' at row 1
查看>>
字符串处理
查看>>
HtmlUnitDriver 网页内容动态抓取
查看>>
ad logon hour
查看>>
罗马数字与阿拉伯数字转换
查看>>
Eclipse 反编译之 JadClipse
查看>>
距离公式汇总以及Python实现
查看>>
Linux内核态、用户态简介与IntelCPU特权级别--Ring0-3
查看>>
第23月第24天 git命令 .git-credentials git rm --cached git stash clear
查看>>
java SE :标准输入/输出
查看>>
[ JAVA编程 ] double类型计算精度丢失问题及解决方法
查看>>