#react-native #sqlite
#реагировать-родной #sqlite
Вопрос:
Я использую SQL Lite и собственные среды React и хочу отобразить то, что я вставил в таблицу. Проблема в том, что когда я нажал на кнопку, ничего не отображалось
Мой Код
import Animal from './Animal'; export default function App() { const addAnimal =()=gt;{ Animal.createTable(); const props = { name: 'Bob', color: 'Brown', age: 2 } const animal = new Animal(props) animal.save() } var AnData = [] async function getAnimal () { const id = 1 const animal = await Animal.find(id) console.log("selected Animal : ", animal) AnData = animal; console.log(AnData.name) } return ( lt;View style={{justifyContent: "center", alignItems: "center", paddingTop: 5}}gt; lt;Textgt;{AnData.name}lt;/Textgt; lt;/Viewgt; )
}