如何将javascript对象插入sqlite数据库?

时间:2016-12-06 14:38:38

标签: javascript database sqlite

我有一个javascript对象:

service location : Object
   formatted_address:"Jharkhand, India"
   latitude : "23.6101808"
   longitude :"85.2799354"

如何在我的sqlite数据库中插入此in a single column作为对象。

当我在数据库上执行SELECT查询时,我希望在响应中将此列值作为对象接收。

1 个答案:

答案 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"}}');