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
/>
相关推荐
#### 一、AngularJS指令简介 AngularJS 是一个流行的 JavaScript 框架,用于构建动态的 Web 应用程序。AngularJS 指令是框架的一个核心功能,它允许开发者通过扩展 HTML 的语法来创建自定义的行为和组件。本书...
文档中首先介绍了风格指南的目标,即为AngularJS应用提供一套最佳实践和样式指南。文档强调,本风格指南不包含通用的JavaScript开发指南,因为这些可以在其他地方找到,比如Google、Mozilla、GitHub、Douglas ...
- **官方文档**:AngularJS官方网站提供了详尽的文档和指南。 - **在线教程**:网上有许多免费和付费的在线课程,适合不同程度的学习者。 - **社区论坛**:参与GitHub、Stack Overflow等社区论坛,与其他开发者交流...
**AngularJS 编写优美JavaScript代码指南** 在前端开发领域,AngularJS 是一款非常流行的JavaScript框架,它提供了丰富的功能和工具来构建复杂的应用程序。本文将聚焦于如何使用AngularJS编写更加优雅、易于维护的...
【AngularJS 学习指南】 AngularJS 是一个强大的前端JavaScript框架,由Google维护,用于构建富互联网应用程序(RIA)。它采用MVC(Model-View-Controller)架构模式,简化了前端开发,使得开发者能够更高效地创建...
《AngularJS UI Development》这本书是关于使用AngularJS框架进行用户界面开发的专业指南,随书附带的代码资源库名为"AngularUI-Code-master"。这个压缩包中的代码旨在帮助读者深入理解并实践AngularJS在构建现代Web...
3. **AngularJS Directive**:AngularJS指令允许开发者扩展HTML语法,定义自定义的DOM元素或属性,如`ng-app`、`ng-model`等。本项目中的指令模块是专门为Google Chart Tools设计的,让集成更简单。 4. **项目结构*...
通过AngularJS的`ngInclude`或自定义指令,可以将这些编辑器嵌入到我们的应用中,并通过AngularJS的服务和指令来控制它们的行为。 在跨平台方面,AngularJS应用可以在Linux、Windows等各种操作系统上运行,因为它是...
#### 四、实战指南 - **实例与代码**: 本书提供大量实际案例和代码片段,帮助读者更好地理解和掌握AngularJS的各种特性和用法。 - **动手实践**: 通过完成一系列练习项目,加深对AngularJS的理解,同时提升实际开发...
【标题】"blackjack-in-angularjs:AngularJs 中的一个简单...通过研究这个项目,开发者不仅可以学习到如何使用AngularJS构建Web应用,还可以深入了解其设计理念和实践方法,对提升JavaScript和前端开发能力大有裨益。
- **代码风格**:遵循AngularJS官方的编码风格指南,如使用`$scope`的最佳实践,避免全局变量等。 - **文档注释**:为每个组件添加清晰的文档注释,方便其他开发者理解和使用。 5. **持续集成和自动化工具**: ...
在探索这个项目时,开发者可能需要了解AngularJS的基本概念,如模块(module)、控制器(controller)、服务(service)、指令(directive)以及数据绑定和依赖注入等核心特性。此外,对于Angular Material,还需要...
5. `directives.js` - 指令文件,定义了自定义的AngularJS指令,用于增强HTML元素的功能。 6. `styles.css/less/sass` - 样式文件,负责应用的视觉样式。 7. `templates` 文件夹 - 可能包含了一些预渲染的HTML模板,...
总之,“用Typescript烹饪angular.js”是一个关于如何在保持项目运行的同时,逐步提升代码质量和可维护性的实践指南。它帮助开发者理解如何在现有AngularJS项目中引入强类型和现代化的开发实践,为项目的长远发展...
- `ng generate directive my-directive`:生成新的指令。 - `ng generate pipe my-pipe`:生成新的管道。 - `ng generate service my-service`:生成新的服务。 - `ng generate route my-route`:生成新的路由。 - ...