我收到一个错误Button
,当发生这种情况时,我想返回null。
有人知道这样做的最好方法吗?
NullPointerException
答案 0 :(得分:2)
尝试:
const currenFolderId = this.state.currentFolder && this.state.currentFolder.id
? this.state.currentFolder.id
: null;
答案 1 :(得分:0)
const currentFolderId = null;
if (this.state && this.state.currentFolder) {
currentFolderId = this.state.currentFolder.id ? this.state.currentFolder.id : null
}