Cho em hỏi một chút về vấn đề này ạ. Em muốn chuyển hết questions trong api này thành một object nên em em đã dùng JSON parse để chuyển. Vậy em làm như vậy có đúng ko ạ, và nếu sai thì em nên làm như nào ạ. Em xin cảm ơn
function onResponse(response) {
console.log(response.json());
return response.json();
}
function fetch_code(data) {
const a = JSON.parse(data.questions);
console.log(a);
}
fetch('https://wpr-quiz-api.herokuapp.com/attempts', {
method: "POST"
}).then(onResponse).then(fetch_code);