我有一个功能应该一个接一个地运行,例如:
function cutTomatoesAlone(Kg){
// slice my stuff
}
function cookTomatoes(Minutes){
// boil my stuff
}
我这样称呼他们:
cutTomatoesAlone(15) // 15kg, need 3 hours!
cookTomatoes(10); // need 10 minutes
但是 cookTomatoes(10) 在我的 cutTomatoesAlone(15) 之前完成。
如何先运行 cutTomatoesAlone(15)
,完成后运行cookTomatoes(10)
?
编辑: cutTomatoesAlone()
加载外部 JSON。cookTomatoes(10)
在...上下功夫。