use LocalStorage.js:33 TypeError: Converting circular structure to JSON code example
Example: Converting circular structure to JSON
//The error means that the object you pass in the request has a circular reference, something like:
var a = {};
a.b = a;