如何在这个ParamQuery Grid Javascript中使用PHP集成Mysql数据

时间:2017-03-31 12:58:55

标签: javascript php jquery mysql

如何将mysql输出的JSON格式更改为下面提到的预期格式。帮助将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文件供您参考:

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"}
];

提前致谢。

1 个答案:

答案 0 :(得分:0)

mysqli_fetch_assoc($sth)更改为mysqli_fetch_array($sth, MYSQLI_NUM)