admin管理员组文章数量:1344179
Uncaught TypeError: Converting circular structure to JSON
The object I'm trying to stringify is this (I logged it in javascript console):
Object
GsearchResultClass: "GlocalSearch"
accuracy: "8"
addressLines: Array[2]
city: "Cupertino"
content: ""
country: "United States"
ddUrl: ";daddr=10825+North+Wolfe+Road,+Cupertino,+CA+(Southland+Flavor+…"
ddUrlFromHere: ";saddr=10825+North+Wolfe+Road,+Cupertino,+CA+(Southland+Flavor+…"
ddUrlToHere: ";daddr=10825+North+Wolfe+Road,+Cupertino,+CA+(Southland+Flavor+…"
html: HTMLDivElement
lat: "37.335405"
listingType: "local"
lng: "-122.015386"
maxAge: 604800
phoneNumbers: Array[1]
region: "CA"
staticMapUrl: ";format=gif&sensor=false&size=150x100&zoom=…"
streetAddress: "10825 North Wolfe Road"
title: "Southland Flavor Cafe"
titleNoFormatting: "Southland Flavor Cafe"
url: ";q=stinky&cid=9384294304761453216"
viewportmode: "puted"
__proto__: Object
And I'm doing it like this:
JSON.stringify(theobject);
Uncaught TypeError: Converting circular structure to JSON
The object I'm trying to stringify is this (I logged it in javascript console):
Object
GsearchResultClass: "GlocalSearch"
accuracy: "8"
addressLines: Array[2]
city: "Cupertino"
content: ""
country: "United States"
ddUrl: "http://www.google./maps?source=uds&daddr=10825+North+Wolfe+Road,+Cupertino,+CA+(Southland+Flavor+…"
ddUrlFromHere: "http://www.google./maps?source=uds&saddr=10825+North+Wolfe+Road,+Cupertino,+CA+(Southland+Flavor+…"
ddUrlToHere: "http://www.google./maps?source=uds&daddr=10825+North+Wolfe+Road,+Cupertino,+CA+(Southland+Flavor+…"
html: HTMLDivElement
lat: "37.335405"
listingType: "local"
lng: "-122.015386"
maxAge: 604800
phoneNumbers: Array[1]
region: "CA"
staticMapUrl: "http://maps.google./maps/api/staticmap?maptype=roadmap&format=gif&sensor=false&size=150x100&zoom=…"
streetAddress: "10825 North Wolfe Road"
title: "Southland Flavor Cafe"
titleNoFormatting: "Southland Flavor Cafe"
url: "http://www.google./maps/place?source=uds&q=stinky&cid=9384294304761453216"
viewportmode: "puted"
__proto__: Object
And I'm doing it like this:
JSON.stringify(theobject);
Share
Improve this question
asked Feb 10, 2011 at 6:56
TIMEXTIMEX
273k367 gold badges802 silver badges1.1k bronze badges
2
- can you provide the plain javascript object literal ? – jAndy Commented Feb 10, 2011 at 7:02
- well, you need to create that object somewhere in your Javascript. I would like to see that part. – jAndy Commented Feb 10, 2011 at 7:09
3 Answers
Reset to default 7An object is referencing itself somewhere; hence the message "circular structure." I suspect it might be in the HTMLDivElement
. Are you using this only for debugging purposes or do you actually want to do something meaningful with this JSON? If you're just using it for debugging, most modern JavaScript debuggers will let you just log an object to the console. If you're actually trying to do something with the data, you should pull out only the things you need from this object and put them into a new trimmed down object that you can pass to JSON.stringify
. This object looks like it came from a Google API and has lots of extra data in it.
If you don't mind destructively modifying the object, try selectively nulling out suspicious fields and see if JSON.stringify will accept the object. At least that way you'll know what's causing it. Note that if you do this you may end up breaking the object for any future uses.
Had this same problem, turns out I was an idiot and forgot the .val() at the end of the element that I wanted to insert into the JSON object.
Be sure you're not shoving a whole element into the JSON object, otherwise it will attempt to JSON encode something that is not valid JSON.
I would look at the following
html: HTMLDivElement
should probably take the html of the element and not the element itself
or the following
Object -> proto -> Object -> proto -> Object -> ........
本文标签: jqueryHow do I solve this Javascript error when converting JSON to stringStack Overflow
版权声明:本文标题:jquery - How do I solve this Javascript error when converting JSON to string? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743707214a2525320.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论