0
我想設置一個動態頁面標題和使用管道,但我似乎無法獲得字符串渲染和同時使用管道。Angular 2動態字符串與管道
沒有管道的標題是<ion-title> Add {{pageTitle}} transaction </ion-title>
,它變成了「添加支付交易」或「添加收入交易」。一旦標題呈現,我希望能夠使用我的語言翻譯管道translate
,如Add {{pageTitle}} transaction | translate
。
我想:
{{ Add {{pageTitle}} transaction | translate }}
{{ Add ${pageTitle} transaction | translate }}
{{ `"Add ${pageTitle} transaction"` | translate }}