@ angular / flex-layout不能与@HostBinding一起使用

flex-layout没有在主机元素通过@HostBinding获取其flex-layout属性的主机元素上应用内联样式

@Component({
    selector: 'column-node',//flex-layout not working on host elements
    host: { '[@visibility]': 'visibility' },template: `<ng-content></ng-content>`,})    

export class LayoutColumnNodeComponent {
    @HostBinding('attr.fxLayout') fxlayout = 'column';
}

在DOM< column-node fxLayout =“column”>中添加fxLayout属性.但是没有应用flex-layout内联样式.

不能使用独立选择器< column-node>在您的html中所有自定义选择器,无论您在页面中有多少,都需要内联flex属性标记.

< column-node fxLayout =“row”fxLayoutAling =“start start”fxFlex.xs =“100”fxFlex.sm =“50”fxFlex.md =“33”fxFlex.lg =“33”fxFlex =“25”> ;使用所有这些flex标记扫描这段代码将非常困难….

解决方法

我认为问题是当元素上没有直接的fxLayout属性时,不应用LayoutDirective.

https://github.com/angular/flex-layout/blob/057fd5c6eec57e94b300eb49d53d38b611e25728/src/lib/flexbox/api/layout.ts

@Directive({selector: `
  [fxLayout],[fxLayout.xs]
  [fxLayout.gt-xs],[fxLayout.sm],[fxLayout.gt-sm]
  [fxLayout.md],[fxLayout.gt-md]
  [fxLayout.lg],[fxLayout.gt-lg],[fxLayout.xl]
`})
export class LayoutDirective extends ...

只有在将属性静态添加到模板时才会应用指令.

通常无法将指令应用于主机元素.

相关文章

ANGULAR.JS:NG-SELECTANDNG-OPTIONSPS:其实看英文文档比看中...
AngularJS中使用Chart.js制折线图与饼图实例  Chart.js 是...
IE浏览器兼容性后续前言 继续尝试解决IE浏览器兼容性问题,...
Angular实现下拉菜单多选写这篇文章时,引用文章地址如下:h...
在AngularJS应用中集成科大讯飞语音输入功能前言 根据项目...
Angular数据更新不及时问题探讨前言 在修复控制角标正确变...