如何在ngx-formly上覆盖主包装

时间:2018-12-06 18:16:39

标签: angular ionic3 angular-formly

我需要一些帮助,我有离子3形式。

我找不到替换/替代主要离子包装纸的方法。真正需要这个才能够在离子上使用浮动属性。

如果我不这样做,那么我的问题是组件打包了两次。 即

<custom-wrapper>
  <main-wrapper>
    <field/>
  </main-wrapper>
</custom-wrapper>

我需要做

<custom-wrapper>
  <field/>
</custom-wrapper>

我的包装程序的示例代码:

@component({
  selector: 'formly-wrapper-mm-form-field',
  template:` ++ <ng-template #fieldComponent></ng-template> ++ `,
})

显示以下内容,这意味着正在应用主包装器:

enter image description here

我将这个包装器添加到app.module上,如下:

 FormlyModule.forRoot({
   wrappers: [
     { name: 'form-field', component: CustomWrapperComponent },
   ],
 }),

但没有完成任务。

感谢您的回复。

0 个答案:

没有答案