如何将mysql输出的JSON格式更改为下面提到的预期格式。帮助将JSON输出转换为预期输出。
cron
<Button active={ this.props.ui.selectedTab === 'notifications' ? true : false }
onPress={ () => this.selectedTab('notifications') }
{ ...this.props.ui.notifications ? badge : null }
>
{ this.props.ui.notifications ?
<Badge><Text style={{ color:'white' }}>{this.props.ui.notifications}</Text></Badge> : null
}
<Icon name='md-notifications' />
</Button>
这是我更新的PHP文件供您参考:
[
{"storenm": "S1", "FA_SOH": "20964", "FA_CY_QTY": "15", "FA_CT_QTY": "44497"},
{"storenm": "S2", "FA_SOH": "1096", "FA_CY_QTY": "2", "FA_CT_QTY": "7501"}
];
提前致谢。
答案 0 :(得分:0)
将mysqli_fetch_assoc($sth)
更改为mysqli_fetch_array($sth, MYSQLI_NUM)