Last active
December 10, 2015 10:39
-
-
Save AndrewHenderson/4422864 to your computer and use it in GitHub Desktop.
Non-working: Cloudant save doc using jquery.couch.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var db = $.couch.db('https://username:[email protected]/crud'); | |
var doc = {"_id":"foo", "name": "bar"}; | |
db.saveDoc(doc, { | |
success: function(response, textStatus, jqXHR){ | |
console.log(response); | |
}, | |
error: function(jqXHR, textStatus, errorThrown){ | |
console.log(errorThrown); | |
} | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Errors:
OPTIONS
file:///C:/https%3A%2F%2Fusername%3Apassword%40username.cloudant.com%2Fcrud/foo Resource failed to load jquery-1.8.3.min.js:2
Uncaught TypeError: Cannot read property 'error' of null