Нужно с php файла получить данные в формате json на javascript через fetch .
Только начал разбираться с Fetch , не понимаю , почему вылезла ошибка .
const GetResponse = async (url) => {
const response = await fetch(url, {
method: "post",
headers: {
'Accept': 'application/json, text/plain, */*' ,
'Content-Type': 'application/json'
} })
const json = await response.json();
console.log(json);
}
GetResponse('unique.php')
<?php
$something = array(
"first" => "something",
"second" => "something2",
"thrid" => "something3",
)
echo json_encode($something);