标签: javascript reactjs ecmascript-6 promise
当我调用.then中的函数时,如何保留promise catch范围?
somePromise().then(result => this.setState({result})).catch(e => console.log(e))
在这种情况下,如果在设置状态后发生任何错误(例如在render()方法中),则错误将落入此promise catch()。
有什么方法可以预防吗?