我从 UI 获取数据如下,以下所有输入数据都是字符串。
cust_id : temp001 cust_chart_id : 测试 default_chart : false chart_pref_json : {range:6m,chart_type:candlestick,indicators:{},period:Daily,futurepadding:20} }
我正在尝试将 chart_pref_json 存储在 mongodb 中。这个 chart_pref_json 对象实际上是作为下面的字符串存储在 db 中的,
{ "_id" : ObjectId("50aca4caf5d0b0e4d31ef239"), "cust_id" : "temp001", "cust_chart_id" : "testing", "default_chart" : "false", "created_at" : NumberLong("1353491658551"), **"chart_pref_json" : "{range:6m,chart_type:candlestick,indicators:{},period:Daily,futurepadding:20}" }**
但我实际上希望将此 chart_pref_json 存储为 json 对象,如下所示。
{ "_id" : ObjectId("50aca4caf5d0b0e4d31ef239"), "cust_id" : "temp001", "cust_chart_id" : "testing", "default_chart" : "false", "created_at" : NumberLong("1353491658551"), **"chart_pref_json" : {range:6m,chart_type:candlestick,indicators:{},period:Daily,futurepadding:20} }**
任何人都可以帮助我解决这个问题。