我正在开发一个项目,该项目需要使用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');
答案 0 :(得分:0)
您可以仅在不使用await的情况下使用console.log来评估承诺中的情况
console.log('start');
this.translateService.stream('Labels').toPromise().then(labels => {
console.log(labels, 'check translation');
console.log('end');
});