我想通过使用host属性从另一个指令向一个元素添加一个指令,但是似乎没有办法引用另一个指令.
原文链接:/angularjs/143502.html@Directive({ selector: '[one]',host: { '[two]': '"some-value"' } // How can I reference DirectiveTwo here? }) export class DirectiveOne { } @Directive({ selector: '[two]' }) export class DirectiveTwo { }
执行此操作时,我得到标准“无法绑定到’两个’,因为它不是已知的本机属性”错误.
引用和使用另一个指令的正确方法是什么?