而不是对象的内容

而不是对象的内容

本文介绍了JSON.stringify返回" [object Object]"而不是对象的内容的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

,但 JSON.stringify 在这种情况下返回[object Object],而不是显示对象的内容。我该如何解决这个问题,以便JSON字符串实际上包含对象的内容?

Here I'm creating a JavaScript object and converting it to a JSON string, but JSON.stringify returns "[object Object]" in this case, instead of displaying the contents of the object. How can I work around this problem, so that the JSON string actually contains the contents of the object?

var theObject = {name:{firstName:"Mark", lastName:"Bob"}};
alert(JSON.stringify(theObject.toString())); //this alerts "[object Object]"


推荐答案

使用 alert(JSON.stringify(theObject));

这篇关于JSON.stringify返回" [object Object]"而不是对象的内容的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-22 21:53