我正试图从。html中使用香草javascript进行GET请求,我希望在变量内分配响应,我必须使用响应来操纵DOM,但是,我得到一个承诺<等待在>等待在>而不是JSON
这是我的代码:
let data = fetch('http://localhost/api/products')
.then(response => response.json())
console.log(data)
我想从console.log(data)中得到这个:
{ "name": "SHOES", "price": 129}
这段代码将是一个很好的指南,你可以得到json数据,然后第二个then
const getCart = () => {
fetch("/cart.js", {
method: 'GET',
headers: new Headers({'content-type': 'application/json', 'X-Requested-With':'xmlhttprequest'})
}).then(res => {
return res.json();
}).then(json => {
console.log(json);
});
}