Получаю ошибку SyntaxError: JSON.parse: unexpected character at line 1 column 1 of the JSON data
вот мой код
var result = {
price: price.replace(/\s/g, ''),
number_order: number_order
};
result_json = JSON.stringify(result);
pink_btn2.addEventListener("click", function () {
fetch('/api/order/order.php', {
method: 'POST',
headers: {
'Content-Type': 'application/json'
},
body: result_json
}).then(res => res.json());
});
PHP
$content = trim(file_get_contents("php://input"));
$data = json_decode($content,true);
var_dump($data) ;
Что я делаю не так?