我想使用从mysql数据获取中获取的json数据使用react native蓝牙escpos打印机插件打印收据。 json数据的格式如下:
[
{"fruit":"Aple","qty":"12","price":"12000"},
{"fruit":"Orange","qty":"6","price":"8000"},
]
我想在具有以下显示的迷你便携式蓝牙热敏打印机上打印它:
Fruits Quantity Price
Aple 12 12.000
Orange 6 8.000
TOTAL 20.000
我在向 PrintReceipt类输入 await BluetoothEscposPrinter.printText(“ .... \ r \ n”,{}) 命令时遇到麻烦,因为从mysql数据提取生成的json数据的长度可以更改。
感谢您的帮助
class PrintReceipt extends React.Component {
....
render() {
const { navigation } = this.props;
data={this.props.navigation.state.params.datasource}
return <View>
<View>
???? how is the command to print the json data here
</View>
</View>
}
}