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

Popular posts from this blog

php - failed to open stream: HTTP request failed! HTTP/1.0 400 Bad Request -

java - How to filter a backspace keyboard input -

java - Show Soft Keyboard when EditText Appears -