誰かが助けることを願っています。 私はマジックミラーの翻訳部分に取り組んでいます。私は天気MODULの内部node_helper.jsを使用します。私はこの約束のもので狂っている
if (this.config.lang != 'en'){
console.log("in Translate");
translate(alerts.description, {to: this.config.lang}).then((res) => {console.log(res.text); return res;});
translate(alerts.expires, {to: this.config.lang}).then(res => {console.log(res.text)});
translate(alerts.message, {to: this.config.lang}).then(res => {console.log(res.text)});
}
など:私はuのにコードをお見せしましょう。 config.logを調べると、私が見たいと思っているすべての結果が得られますが、次のコードでそれらを使用できません。
、翻訳機能は、あなたが助けたい問題は何であるの約束 –
を翻訳して返しGoogleからのでしょうか? – jfriend00
私が言ったように、translateの出力はconsole.logに正しく表示されていますが、3つの翻訳通話の後でコードに必要です。これは私の問題です –