jquery - How to store API in rethinkdb which is coming from ad server -
how store api in rethinkdb coming ad server , widget. how can store in rethinkdb?
if you're using javascript, can insert javascript object rethinkdb. make sure convert api response js object.
var obj = { type: 'type', property: 'property' }; r.table("api") .insert(obj) .run(conn, callback)
take @ documentation insert
.
keep in mind cant' interact rethinkdb directly browser.
Comments
Post a Comment