将Json对象保存到Couchdb
答
我写了一个小脚本,这样它的伎俩我!
需要 'JSON' 需要 'rest_client' 需要 'couchrest' 需要 'PP'
json = File.read('file.json')
doc = JSON.parse(json)
CouchRest.post('http://localhost:5984/db/',doc)
pp doc
谢谢你的回应 – verdure