[AngularJS] Directive Definition Objects (DDO)

本文介绍了AngularJS中指令的概念,并详细解释了如何定义和使用link函数。通过对比两种不同的实现方式,帮助读者理解AngularJS指令定义对象(DDO)的结构及其配置选项。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

This function that we just set up is what's called a link function, and it's actually a very small part of a larger API. If I cut this and instead I return an object and it has a property of link with that function, you'll see that this will behave the exact same way. Now this object that we are returning here is called the directive definition object, or DDO if you want an acronym for it. There's plenty of things on here for you to configure.

var egghead = angular.module("egghead", []);

egghead.controller("AppCtrl", function () {
    var app = this;

    app.message = "Hello";
})

egghead.directive("myFirstDirective", function () {
    return function (scope, element, attrs) {
            element.text(scope.app.message + " " + attrs.message);
        }
})

TO:

var egghead = angular.module("egghead", []);

egghead.controller("AppCtrl", function () {
    var app = this;

    app.message = "Hello";
})

egghead.directive("myFirstDirective", function () {
    return {

        link: function (scope, element, attrs) {
            element.text(scope.app.message + " " + attrs.message);
        }
    }
})

 

There are many other definitions can put here.

 

Read More: 

https://docs.angularjs.org/guide/directive

转载于:https://www.cnblogs.com/Answer1215/p/4129919.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值