Похожие чаты

I am getting confused on how async-await function does not

block operation

let say I have a function named foo,I want to make the statement console.log('done') can execute without wating for resolving fetch response.
function foo(){
console.log('hello world'); //1
var res = fetch.get(); //ajax //2
console.log('done'); //3
}
execution order: 1,2,3
In promised-based solution,I can do something like this
function foo(){

console.log('hello world'); //1
fetch.get().then((result)=>{
var res = result;
}); //ajax 2
console.log('done'); //3

}
so that the execution order would be 1,3,2

However, Once changed this in async-await pattern

async function foo(){

console.log('hello world'); //1
var res = await fetch.get(); //ajax 2
console.log('done'); //3

}

the console.log('done') executed only the response has received.

exeuction order: 1 2 3

How do I make it non-blocking?

2 ответов

8 просмотров

if on node, use Node version 8. there is a feature bug which causes the engine to behave as you expect.

console.log('hello world'); const p = fetch.get(); console.log('done'); await p;

Похожие вопросы

Обсуждают сегодня

Всем привет, написал код ниже, но он выдает сегфолт, в чем причина? #include <stdio.h> #include <stdlib.h> #include <string.h> struct product { char *name; float price; };...
buzz базз
70
Добрый день, не подскажите, если в OC-V3 поменять страндартную директорию /storage/ на /storage2/ - не будет сильно много проблем ?
Max Dubovsky
32
Хотел бы спросить у знающих, правильную ли я выбрал книгу для начала изучения ассемблера Юрова В.И ? Или есть более лучшие книги для начала обучения?
Botsman
25
Conversation at a festival with a non-crpto person (not a normie by any stretch, though): * person: tell me about crypto, me: ok, the original idea is p2p sound money for the...
molecular#123 🐓
25
Книга Юрова В.И пойдёт для обучения?
Botsman
24
Люди добрые, помогите с идеями, потому что свои закончились. У клиента падает софтина в момент инициализации модуля OtlEventMonitor на RegisterWindowMessage('Gp/OtlTaskEvents/...
Михаил Усков
7
$params = [ 'formid' => 'feedbackForm', 'formTpl' => '@CODE: <form class="form-validate" data-id="ajax_form"> <fieldset class="margin-bottom-md"> ...
Pathologic
1
> Примечательно, что новый владелец удаляет из GitHub любые жалобы, указывающие на подозрительную активность или смену владельца, и, видимо, рассчитывает на то, что пользовате...
Alex Sherbakov
2
Today, DENT achieved a significant step forward in DENTX adoption 🥳 Getting DENTX and starting staking is much easier: DENTX is available on Uniswap! Everyone can swap their ...
Thomas
3
I bought some PHA tokens on Kucoin, which is the best wallet to store and easy to use?
AMR
19
Карта сайта