我正在使用ngx-translate及其即时方法。我的翻译键由一些文本和两个占位符/参数组成:
"invoice": "New {{code}} ({{rechnungsNr}})"
虽然{{rechnungsNr}}
是一个数字,但参数{{code}}
是一个字符串(我将传递另一个翻译键),并且也需要翻译。但是,它被翻译为纯文本。
这是我如何调用它:
this.translationService.instant(
'invoice',
{
code: invoices.fsl_herkunft, //I need this to have be translated as well
rechnungsNr: notificationItem.rechnungsNummer
}
);
是否可以转换参数而不必调用instant()
方法来首先转换参数并将其作为参数传递给第二个instant()
?