Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我收到了一个 grunt 设置,其中一个新任务应该执行(grunt.task.run)已经存在的任务。要执行的任务是异步的,新任务应该等到异步任务完成。
这样做的首选方法是什么?
grunt 已经涵盖了这一点,您应该将您的任务声明为异步任务,并在您的任务中使用 done() 函数来告诉 grunt 它已经完成,看看这个 repo和这篇文章,这对我很有帮助我首先必须处理异步任务。
看不到你的 gruntfile,这就是我所能说的,但可以随意更新你的帖子,并带有指向 grunfile 的链接:)