Transclusion(嵌入)
app.directive(
'outputText'
,
function
() {
return
{
transclude:
true
,
scope: {},
template:
'<div ng-transclude></div>'
};
});
<
div
output-text>
<
p
>Hello {{name}}</
p
>
</
div
>
transclude:’element’ 和 transclude:true的区别
controller 函数和 require
app.directive(
'outerDirective'
,
function
() {
return
{
scope: {},
restrict:
'AE'
,
controller:
function
($scope, $compile, $http) {
// $scope is the appropriate scope for the directive
this
.addChild =
function
(nestedDirective) {
// this refers to the controller
console.log(
'Got the message from nested directive:'
+ nestedDirective.message);
};
}
};
});
app.directive(
'innerDirective'
,
function
() {
return
{
scope: {},
restrict:
'AE'
,
require:
'^outerDirective'
,
link:
function
(scope, elem, attrs, controllerInstance) {
//the fourth argument is the controller instance you require
scope.message =
"Hi, Parent directive"
;
controllerInstance.addChild(scope);
}
};
});
<
outer-directive
>
<
inner-directive
></
inner-directive
>
</
outer-directive
>
一个记事本应用
第一步
app.directive(
'notepad'
,
function
(notesFactory) {
return
{
restrict:
'AE'
,
scope: {},
link:
function
(scope, elem, attrs) {
},
templateUrl:
'templateurl.html'
};
});
-
因为我们想让指令可重用,所以选择使用隔离的scope。这个指令可以拥有很多与外界没有关联的属性和方法。
-
这个指令可以以属性或者元素的方式被使用,这个被定义在 restrict 属性中。
-
现在的link函数是空的
-
这个指令从 templateurl.html 中获取指令模板
第二步
<
div
class
=
"note-area"
ng-show
=
"!editMode"
>
<
ul
>
<
li
ng-repeat
=
"note in notes|orderBy:'id'"
>
<
a
href
=
"#"
ng-click
=
"openEditor(note.id)"
>{{note.title}}</
a
>
</
li
>
</
ul
>
</
div
>
<
div
id
=
"editor"
ng-show
=
"editMode"
class
=
"note-area"
contenteditable
=
"true"
ng-bind
=
"noteText"
></
div
>
<
span
><
a
href
=
"#"
ng-click
=
"save()"
ng-show
=
"editMode"
>Back</
a
></
span
>
<
span
><
a
href
=
"#"
ng-click
=
"openEditor()"
ng-show
=
"!editMode"
>Add Note</
a
></
span
>
-
note 对象中封装了 title,id 和 content。
-
ng-repeat 用来遍历 notes 中所有的笔记,并且按照自动生成的 id 属性进行升序排序。
-
我们使用一个叫 editMode 的属性来指明我们现在在哪种模式下。在编辑模式下,这个属性的值为 true 并且可编辑的 div 节点会显示。用户在这里输入自己的笔记。
-
如果 editMode 为 false,我们就在查看模式,显示所有的 notes。
-
两个按钮也是基于 editMode 的值而显示和隐藏。
-
ng-click 指令用来响应按钮的点击事件。这些方法将和 editMode 一起添加到scope中。
-
可编辑的 div 框与 noteText 相绑定,存放了用户输入的文本。如果你想编辑一个已存在的笔记,那么这个模型会用它的文本内容初始化这个 div 框。
第三步
scope.restore =
function
() {
scope.editMode =
false
;
scope.index = -1;
scope.noteText =
''
;
};
第四步
scope.openEditor =
function
(index) {
scope.editMode =
true
;
if
(index !== undefined) {
scope.noteText = notesFactory.get(index).content;
scope.index = index;
}
else
{
scope.noteText = undefined;
}
};
scope.save =
function
() {
if
(scope.noteText !==
''
) {
var
note = {};
note.title = scope.noteText.length > 10 ? scope.noteText.substring(0, 10) +
'. . .'
: scope.noteText;
note.content = scope.noteText;
note.id = scope.index != -1 ? scope.index : localStorage.length;
scope.notes = notesFactory.put(note);
}
scope.restore();
};
-
openEditor 为编辑器做准备工作。如果我们在编辑一个笔记,它会获取当前笔记的内容并且通过使用 ng-bind 将内容更新到可编辑的 div 中。
-
如果我们在创建一个新的笔记,我们会将 noteText 设置成 undefined,以便当我们在保存笔记的时候,触发相应的监听器。
-
如果 index 参数是 undefined,它表明用户正在创建一个新的笔记。
-
save 函数通过使用 notesFactory 来存储笔记。在保存完成后,它会刷新 notes 数组,从而监听器能够监测到笔记列表的变化,来及时更新。
-
save 函数调用在重置 controllers 之后调用restore(),从而可以从编辑模式进入查看模式。
第五步
var
editor = elem.find(
'#editor'
);
scope.restore();
// initialize our app controls
scope.notes = notesFactory.getAll();
// load notes
editor.bind(
'keyup keydown'
,
function
() {
scope.noteText = editor.text().trim();
});
第六步
<
h1
class
=
"title"
>The Note Making App</
h1
>
<
notepad
/>