次のように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} }**
誰かがこの問題について私を助けることができますか?