填写这份《一分钟调查》,帮我们(开发组)做得更好!去填写Home

Output

一个装饰器,用于把一个类字段标记为输出属性,并提供配置元数据。 凡是绑定到输出属性上的 DOM 属性,Angular 在变更检测期间都会自动进行更新。

Decorator that marks a class field as an output property and supplies configuration metadata. The DOM property bound to the output property is automatically updated during change detection.

选项说明
bindingPropertyName?

输出属性绑定到的 DOM 属性的名称。

The name of the DOM property to which the output property is bound.

参见

选项

输出属性绑定到的 DOM 属性的名称。

The name of the DOM property to which the output property is bound.

      
      bindingPropertyName?: string
    

使用说明

你可以提供一个可选的仅供模板中使用的名字,在组件实例化时,会把这个名字映射到可绑定属性上。 默认情况下,输出绑定的名字就是这个可绑定属性的原始名称。

You can supply an optional name to use in templates when the component is instantiated, that maps to the name of the bound property. By default, the original name of the bound property is used for output binding.

参见 @Input 的例子了解如何指定一个绑定名。

See Input decorator for an example of providing a binding name.