soword科技言
永久公益免费API接口
提供永久免费的API接口,查看更多API接口,如果您有其他免费API资源,请联系我们,造福人类。
提供商务开发:小程序,系统,APP
定制开发,免费评估,免费咨询,价格便宜,售后保障,前往开发服务中心联系开发客服中心
Axios将布尔值解析为String

我正在尝试使用Axios get从JSON中获取所有内容,除布尔值之外的所有方法均不解析为String(即添加当前state.toString(),但无法正常工作。或者是否有其他方式来显示它?在后端api中? “ isInstructed”:是的,

const { id } = this.props.match.params
axios.get(`/visitors/${id}`)
.then(res => {
this.setState({ visitors: res.data }); 
}

渲染

return (
 <h4>Is instructed? </h4>{this.state.visitors.isInstructed.toString()}

也许的初始值this.state.visitorsundefinednull

尝试

return (
<h4>Is instructed? </h4>
{
 this.state.visitors && typeof this.state.visitors.isInstructed !== undefined ?
 this.state.visitors.isInstructed.toString() : 
 null
}



2023-03-22 10:04:19

新人小程序+APP定制199元起


发放福利,助力中小企业发展,真正在互联网中受益

点击询问定制

广告服务展示