标签: database sqlite react-native react-native-flatlist
我正在我的项目中使用以下库:https://github.com/andpor/react-native-sqlite-storage。
我是这样从数据库中检索多行的:
Code 1
Code 2
Flatlist - Result
但是我不想这样对数据数组中的数据进行硬编码:
this.state = { data: [{worker_fname: 'John'}, {worker_fname: 'Harry'}] };
我想从数据库中获取数据,而无需在数组中添加硬编码:)