純粋な JavaScript を使用するタスクがあり、データを API ファイルに書き込むときに問題が発生しました。これは私が書いたものです:
document.getElementById('btn').addEventListener("click",function (event) {
event.preventDefault();
var countryName = document.getElementById("name").value;
var countryArea = document.getElementById("area").value;
var countryPopulation = document.getElementById("population").value;
var countryCallingCode = document.getElementById("calling_code").value;
if (countryName !== "" && countryArea !== "" && countryPopulation !== "" && countryCallingCode !== "") {
var postReq = new XMLHttpRequest();
postReq.open('POST', '', true);
var data = {
area: countryArea,
calling_code: countryCallingCode,
created_at: Date.now(),
id: ID,
name: countryName,
population: countryPopulation
};
console.log(data.id);
var jsonPost = JSON.stringify(data);
postReq.onload = function () {
var countries = JSON.parse(postReq.responseText);
if (postReq.readyState == 4 && postReq.status == "201") {
console.log(countries);
}
}
postReq.send(jsonPost);
}
});
しかし、私はのエラーを受け取りますPOST 422 (Unprocessable Entity)
。get、delete、edit 関数も書きましたが、それらは機能するので、なぜこれが機能しないのかわかりません。それで、誰かがなぜこれが起こるのか、そしてこの問題を解決する方法を知っているのでしょうか?
これは私のために働いているサンプルコードです:
var data = {};
data.area = 5555;
data.calling_code = "+25";
data.name = "Japan";
data.population = 100000000;
var url = "";
var jsonUpdate = JSON.stringify(data);
console.log(jsonUpdate);
var updateReq = new XMLHttpRequest();
updateReq.open("PUT", url + '/3', true);
updateReq.setRequestHeader('Content-type', 'application/json; charset=utf-8');
updateReq.onload = function () {
var countries = JSON.parse(updateReq.responseText);
if (updateReq.readyState == 4 && updateReq.status == "200") {
console.table(countries);
} else {
console.error(countries);
}
}
updateReq.send(jsonUpdate);