I knew before that to synchronously obtain the results of asynchronous execution in So I made a concerted effort to solve this problem. As a programmer who often takes pride in reinventing the wheel, I think it is my responsibility to make a small contribution to the change of Consider the following code: const trans = require('node-google-translate-skidz'); function translate (str, strEn, tarEn) { let p = () => { return new Promise((resolve, reject) => { trans({ text: str, source: strEn ? strEn : 'zh', target: tarEn ? tarEn : 'en' }, function (result) { resolve(result.translation) }); }) } let an = async () => { let b = await p() console.log(b); } return an() //console.log(b) } let c = translate('中文') console.log('c', c) This code is probably the best solution I could come up with to solve the asynchronous problem, but the answer is still unsuccessful. But I finally understand why in Look at where the translate method is called and print the translation result after the call. The purpose of doing this is, of course, that I hope to print it after there is a result. If In order to achieve the purpose of printing after the result is available, I cleverly encapsulated an Why? Because I forgot that By introducing the concept of scope, This concludes the article about Can await be omitted in JavaScript asynchrony? For more information about asynchrony in JavaScript, please search for previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope you will support 123WORDPRESS.COM in the future! You may also be interested in:
|
<<: About the problem of vertical centering of img and span in div
>>: Loading animation implemented with CSS3
Table of contents 1. Class 1.1 constructor() 1.2 ...
<br />Use of line break tag<br>The lin...
apt install CMake sudo apt install cmake This met...
Remove the dotted box on the link Copy code The co...
Table of contents 0x01 Failed to load the driver ...
This article shares the specific code for JavaScr...
Table of contents 1. Date 2. RegExp 3. Original p...
1. Introduction MySQL Group Replication (MGR for ...
In order to express the deep condolences of peopl...
1. Always close HTML tags In the source code of p...
This article records the specific method of insta...
Three MySQL instance processes are started on one...
A simple MySQL full backup script that backs up t...
MySQL is a very powerful relational database. How...
Table of contents 1. Background knowledge 1. Intr...