JAVASCRIPT
let response = await fetch("/controllers/AjaxController.php", {
method:"POST",
body:JSON.stringify(products),
headers: {
'Content-Type': 'application/json;charset=utf-8'
}
});
let commits = await response.json(); // читаем ответ в формате JSON
alert(commits);
PHP
$str = json_encode('wow');
var_dump($str);
В итоге : Uncaught (in promise) SyntaxError: JSON.parse: unexpected character at line 1 column 1 of the JSON data
Гугл говорит, что php отправляет не json данные. То есть json_encode не работает??