角度完美地向组件属性发送组件属性

前端之家收集整理的这篇文章主要介绍了角度完美地向组件属性发送组件属性前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我最近意识到React中的以下技术将属性转换为子组件.这使用了解构赋值:

const MyInputComponent = (props) => <input {...props} />

使用它,您可以完美地包装组件,而无需重新实现其界面.

Angular组件是否有类似的技术?

编辑:发现重复Angular2: passing ALL the attributes to the child component

解决方法

I want to wrap an to add some html elements around it for
styling and animation. Else I would have to repeat these elements many
times.

ngcontent是你的朋友!

@Component({
      selector: 'my-wrapper',template: `
        <h1>my fancy header</h1>
        <ng-content>YOUR INPUT WILL GO HERE</ng-content>

        `
    })

在任何你想使用包装器的地方标记

<div>
       <my-wrapper>
          <input .../>
       </my-wrapper>
   </div>

正如您所看到的,包装器可以包含您想要的任何模板以及您喜欢的任何参数.你放入的内部html可以使用你喜欢的任何参数获得任何你想要的标记.

猜你在找的Angularjs相关文章