我用這個教程沒有翻譯
https://ionicframework.com/docs/developer-resources/ng2-translate/
運行的一切,我可以把JSON格式,但不能打印輸出
en.json
{
"HELLO": "hola",
"hi":"sa"
}
NGX-轉換輸出的回報。 ts構造函數;
constructor(public navCtrl: NavController, public navParams: NavParams, public translate: TranslateService) {
translate.setDefaultLang('en');
}
.html block;
<div style="width: 100%;">
<p class="baslik">ACCOUNT</p>
<button ion-item>
<ion-label>{{ 'hi' | translate }}</ion-label>
</button>
<button ion-item>
<ion-label>{{ 'hi' | translate }}</ion-label>
</button>
</div>
但是輸出;
喜
喜
當添加按鈕點擊事件,該代碼塊;
this.translate.use('en').subscribe(
value => {
// value is our translated string
console.log(value);
}
en.json return log;
我已經添加了教程中的所有代碼,但返回的是輸出 –
您正在使用哪個角度版本? – Daniomi
4.1.3 ---------------- –