我在Ionic V1项目中有一个嵌套的回调。 这就是嵌套回调的样子:
Locations.getLocations(...)
.then(...).then(...).then(...).then(...)
.then(...).then(...).then(...).finally()
当我运行它时,这是从此回调返回的输出。
Locations.getLocations(...).then(...).then(...)
.then(...).then(...).then(...).then(...).then(...).finally is not a function
如果我将finally
更改为then
可以使用,但是我需要它使用finally
,因为我无法将任何更改部署到此应用程序。同样,这是昨天工作的,但不是今天,不知道为什么,是什么原因引起的?