node js 顺序执行
有两个函数,function1()和function2(),现在我想先让function1()执行,等function1()执行完后再执行function2(),function1()里面有个for循环,应该怎么样写呢????求大神帮助!!!
1 回复
使用 co库,或者使用Promise,或者使用yield,或者使用async/await
有两个函数,function1()和function2(),现在我想先让function1()执行,等function1()执行完后再执行function2(),function1()里面有个for循环,应该怎么样写呢????求大神帮助!!!
使用 co库,或者使用Promise,或者使用yield,或者使用async/await