typescript报错:Object is possibly 'null' 请问怎么解决?

这么写是不行的吗?请问应该怎么写呢?

`

readonly state = {
    fold: true,
    answer: null
};

render () {
    return (
        
{ this.state.answer && this.state.answer.content }
) } `

 

最佳答案

 

readonly state: any = {
    fold: true,
    answer: null
};

如果未能解决,请移步:ts报错:Object is possibly 'null' 详解

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章