我想使用 ng2-translate 作为占位符。我发现的唯一方法是使用 ng2-translate 服务并将变量传递给占位符,如下所示:
class Form {
placeholder: string;
constructor(translate: TranslateService) {
translate.get('placeholder.value').subscribe(
(placeholder: string) => this.placeholder = placeholder,
);
}
}
<input type="email" placeholder={{placeholder}}/>
但它看起来很笨重。有没有办法将 ng2-translate 用于带有管道或指令的占位符?