RT. I take the data out of the database, and the background console can read the data, but I can"t take out the parameters directly. I don"t know why. The data is in json format.
//
[ { column: "colFamily:content",
timestamp: 152664103143,
"$": "{"person":{"name":"wanger","birth":"1999"}}" } ]
values = values[0].$;
//
{"person":{"name":"wanger","birth":"1999"}}
console.log(values.person)//undefined
above, even if you add JSON.stringfy or JSON.parse, the backend still gets undefined. I don"t know if there is any way to parse the data inside. Person,person.name, person.birth.