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全部获取出来
相关分类