onhandleConfirm=()=>{ fetch('http://localhost:3000/user') .then(function(res){ return res.json() }) .then(function(res){ console.log(res) console.log(res.id) }) .catch(function(err) { console.log('Fetch Error : %S', err); }) }控制台打印的是0:{id: 1}1:{id: 2}2:{id: 3}undefined如果我想获取id的具体值 我能 console.log(res[0].id) => 1还能怎样做呢,怎样能一次性的把id全部获取出来
添加回答
举报
0/150
提交
取消