gpt4 book ai didi

angular - angular2中的注解和装饰器有什么区别

转载 作者:行者123 更新时间:2023-12-05 03:07:17 25 4
gpt4 key购买 nike

@Component({
selector: 'app',
template: 'Hello World!'
})
class MyComponent {}

what are the differences between annotations and decorators in angular2/4? how we can use the annotations and why? when we use decorators and why? what is tha image annotation Example: how i can do tag annotation for apicture in angular2/4 if any one have example please share it to me

提前谢谢你

最佳答案

装饰器是 Yehuda Katz 为 ECMAScript 2016 提议的标准,用于在设计时注释和修改类和属性。这听起来很像注解的作用对吗?好吧……有点。让我们看看装饰器长什么样:

// A simple decorator
@decoratorExpression
class MyClass { }

@Component 是一个注解,它告诉 Angular,注解所附加的类是一个组件。

@Component 是我们需要像这样从 Angular 框架导入的东西:

import { 
ComponentMetadata as Component,
} from '@angular/core';

有关更多信息,您可以查看此 Difference .

关于angular - angular2中的注解和装饰器有什么区别,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48089918/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com