我对于何时使用这两种解析方法感到困惑。
在回显我的json_encoded数据并通过ajax将其检索回去之后,我常常会困惑何时应该使用 JSON.stringify 和 JSON.parse 。
我得到[object,object]我 的console.log 字符串化时解析和JavaScript对象时。
[object,object]
$.ajax({ url: "demo_test.txt", success: function(data) { console.log(JSON.stringify(data)) /* OR */ console.log(JSON.parse(data)) //this is what I am unsure about? } });
JSON.stringify 将JavaScript对象转换为JSON文本并将该JSON文本存储在字符串中,例如:
JSON.stringify
var my_object = { key_1: "some text", key_2: true, key_3: 5 }; var object_as_string = JSON.stringify(my_object); // "{"key_1":"some text","key_2":true,"key_3":5}" typeof(object_as_string); // "string"
JSON.parse 将JSON文本字符串转换为JavaScript对象,例如:
JSON.parse
var object_as_string_as_object = JSON.parse(object_as_string); // {key_1: "some text", key_2: true, key_3: 5} typeof(object_as_string_as_object); // "object"