标签: angular internationalization pipe placeholder
我正在使用i18n将翻译添加到项目中,但是在尝试将此技术应用于带有由管道动态确定的占位符的输入框时遇到问题:
<input i18n-placeholder="@@testPlaceholder" placeholder={{'text to be transformed here by pipe'} | PipeFormatter}} />
其中PipeFormatter是我创建的自定义管道,用于根据需求转换文本。
在这种情况下,我如何为占位符提供翻译?