0
。@ NGX-翻譯'setTranslation」和‘設置’我正在使用@ NGX-翻譯setTranslation方法取決於代碼中的一些條件在運行時更新幾個值不工作
JSON與翻譯文件看起來像這樣的:
"example":{
"tab":{
"firstValue": "someValue"
}
}
setTranslation函數被調用是這樣的:
this.translateService.setTranslation('es', {
"example": {
"tab": {
"firstValue": "otherValue",
}
},
});
此:
this.translateService.get("example.tab.firstValue").subscribe(response => {
console.log(response);
});
總是返回「someValue中」,但它應該返回更新後的值 - 「otherValue」
我做錯了嗎?