我尝试使用JSON.parse();
来将字符串解析为JavaScript对象,但是当我调用console.log(object.constructor.name);
之后,它给了我“ String”。
我尝试两次使用parse
而不是一次,但是这给了我一个错误。
var userInput = document.getElementById("userInput");
var yes = document.getElementById("yes");
var no = document.getElementById("no");
var dataString = "";
const endpoint = 'https://www.jsonstore.io/4037b406bb44de85c5dd50eb1a6472bedb79f447e747412695637c2784cbe43f';
function writeToDatabase(arr) {
alert(arr);
(async function() {
// Send a post request, saving some data
post_response = await fetch(endpoint, {
method: 'POST',
headers: {
'Content-Type': 'application/json'
},
body: JSON.stringify(arr)
});
/*
// console.log the result
console.log(`POST response:`, await post_response.json())
*/
})();
}
function readFromDatabase() {
fetch(endpoint)
.then(response => response.json())
.then(data => {
console.log(data);
dataArr = data;
console.log(dataArr);
});
}
yes.onclick = function() {
fetch(endpoint)
.then(response => response.json())
.then(data => {
data = JSON.stringify(data);
console.log("full data: " + data);
data = JSON.parse(data);
data = data['result'];
data = JSON.stringify(data);
console.log("result array only: " + data);
data = JSON.parse(data);// object.contructor.name
console.log("after parse: " + data);
console.log("data type is: " + data.constructor.name);
data[userInput.value] = "YES";
console.log("final string to write to database: " + data);
writeToDatabase(data);
});
}
no.onclick = function() {
dataString = "{"+userInput.value+": "+"NO"+"}"
writeToDatabase(dataString);
}
我希望它可以转换为Javascript对象,所以我可以添加一个项目,但是相反,它以字符串形式存在,所以我不能添加一个项目。
CODE:https://repl.it/@ErichBuelow/JsonStore-using-JS 查看:https://jsonstore-using-js--erichbuelow.repl.co/
答案 0 :(得分:1)
这是网址中的数据:
{"result":"{test: NO}","ok":true}
response.json()
然后将其转换为具有两个属性(result
(字符串)和ok
(布尔值)的JavaScript对象。
data = JSON.stringify(data)
将其转换回JSON,从而反转response.json()
的效果。
data = JSON.parse(data);
再次颠倒过来,为您提供上述对象的更多信息。
data = data['result'];
提取result
属性,为您提供字符串"{test: NO}"
。
data = JSON.stringify(data);
为您提供该字符串的JSON表示形式。
data = JSON.parse(data);
会反过来,再次为您提供字符串。
我尝试使用解析两次,而不是一次,但是这给了我一个错误。
目前尚不清楚您在哪里尝试过此操作,但是如果您尝试解析{test: NO}
,则会出错,因为该字符串不是有效的JSON。 { "test": "NO" }
是有效的JSON,但引号缺失。
在JSON中嵌入JSON字符串是很愚蠢的。最好将原始JSON表示为:
{
"result": {
"test": "NO"
},
"ok": true
}