我有一个javascript对象:
service location : Object
formatted_address:"Jharkhand, India"
latitude : "23.6101808"
longitude :"85.2799354"
如何在我的sqlite数据库中插入此in a single column
作为对象。
当我在数据库上执行SELECT查询时,我希望在响应中将此列值作为对象接收。
答案 0 :(得分:2)
您可以将其转换为JSON字符串并发送。
JSON.stringify({
service_location: {
formatted_address: "Jharkhand, India",
latitude: "23.6101808",
longitude: "85.2799354"
}
});
这将转换为:
{"service_location":{"formatted_address":"Jharkhand, India","latitude":"23.6101808","longitude":"85.2799354"}}
这可以使用以下方法安全地解码:
JSON.parse('{"service_location":{"formatted_address":"Jharkhand, India","latitude":"23.6101808","longitude":"85.2799354"}}');