Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
132 views
in Technique[技术] by (71.8m points)

javascript - Why node.js asynchronous is not timeout?

First(solved)

I am try promise of node.js.

function testpromise(data, ms) {
    return new Promise((resolve, reject) => {
        if (data=="hello") {
            setTimeout(resolve(data), ms);
            return;
        }
        reject("emm");
    })
}

testpromise("123", 3000)
    .then((res) => { console.log(res) })
    .catch((err) => { console.log(err) });

console.log("123");

If I use testpromise(), And provide a "123"(reject) parameter.

This program was error.

Else, If I provide a "hello" parameter(resolve), Then it is correct.

Why is this happening?

Last

Provide a "hello" parameter to this function:

testpromise("hello", 3000)
    .then((res) => { console.log(res) })
    .catch((err) => { console.lof(err) });

console.log("123");

Then, Node return is correct.

But

setTimeout() Only results, no delay...

Intuitively speaking:

enter image description here

"123" before "hello", This is correct.

but no delay, no delay, no delay!!!

Why?

Help me, Please!

Thank you very much.

question from:https://stackoverflow.com/questions/65923178/why-node-js-asynchronous-is-not-timeout

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)
setTimeout(()=>resolve(data), ms);

you must pass the function into setTimeout, but not the result of the function


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...