我正在使用Ionic Framework的第三版,当我运行 | id | status | round_id | gameweek
1 5 52 10
2 5 52 9
3 5 52 8
4 5 53 5
5 5 53 5
6 5 53 2
7 5 54 7
8 5 55 7
9 5 55 9
10 5 55 9
时,出现此错误:
ionic cordova build --release android
与此相关的其他话题并没有带我到任何地方。请帮助
答案 0 :(得分:1)
我的第一个尝试是检查我的代码是否有未处理的承诺拒绝。
我该如何检测未处理的承诺拒绝?
假设我们有这样的代码:
asyncAction.then(success => {
// do stuff with the result of success
})
因此,如果asyncActions失败,则存在未处理的诺言拒绝,因为我们从不捕获诺言的拒绝。要捕获拒绝,我们需要这样做:
asyncAction.then(success => {
// do stuff with the result of success
}, rejection => {
// handle action failed
})
答案 1 :(得分:0)
我解决了将cordova版本降级到7.1.0的问题