constfoo=str=>{constlen=str.lengthsetTimeout(()=>{bar({str,len})},len*Math.random())}constbarz=string=>newPromise(resolve=>{//代码开始foo(string)global.bar=//该怎么写//代码结束})barz('12345').then(o=>console.log(o.len))//5barz('123').then(o=>console.log(o.len))//3barz('123456').then(o=>console.log(o.len))//6已知foo方法,输入字符串,一段时间后会调用bar方法现在要写一个barz方法,把foo封装成一个promise对应的输入有对应的返回,但是代码该如何写呢?如何用promise的方式正确handle对应的bar?
相关分类