等待翻译完成-Ngx翻译

时间:2020-05-13 10:15:54

标签: javascript angular rxjs ngx-translate

我正在开发一个项目,该项目需要使用ngx翻译库翻译打字稿文件中的文本,但是我想等到翻译完成后再加载组件。我尝试了以下代码,但没有用。

console.log('start');
this.lables = await this.translateService.stream('Labels').toPromise().then(res => res);
console.log(lables , 'check translation');  // it show nothing 
console.log('end');

第二种方法:

console.log('start');
this.lables = await this.translateService.stream('Labels').pipe(take(1)).toPromise().then(res => res);
console.log(lables , 'check translation');  // it show "Labels" as a string.
console.log('end');

1 个答案:

答案 0 :(得分:0)

您可以仅在不使用await的情况下使用console.log来评估承诺中的情况

console.log('start');
this.translateService.stream('Labels').toPromise().then(labels => {
  console.log(labels, 'check translation');
  console.log('end');
});