HTML:
<p>{null}</p>
<p>{this.state.someVar}</p>
我希望他们像这样输出:
null
undefined
这是我的解决方案:
<p>{JSON.stringify(null)}</p>
<p>{typeof this.state.someVar === 'undefined' ? 'undefined' : this.state.someVar}</p>
有更好的解决方案吗?
答案 0 :(得分:0)
与您使用JSON.stringify()
类似,但更直接
<p>{ String(myVar) }</p>