Created
May 14, 2014 20:48
-
-
Save nolanlawson/ae42973c70cbad4edc9b to your computer and use it in GitHub Desktop.
Test PouchDB #2158, IDB data corruption (with AngularJS)
This file contains hidden or 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
<html> | |
<body> | |
<script src="//ajax.googleapis.com/ajax/libs/angularjs/1.2.15/angular.min.js"></script> | |
<script src="//cdn.jsdelivr.net/pouchdb/2.2.0/pouchdb.js"></script> | |
<script src="index.js"></script> | |
</body> | |
</html> |
This file contains hidden or 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 = new PouchDB('foo'); | |
var map = function(doc){ | |
if(doc.type === 'test'){ | |
emit([doc._id], null); | |
} | |
} | |
db.post({type:'test'}).then(function(){ | |
db.query(map, {}, function(err, result){ | |
if (err) { | |
console.log(err); | |
} else { | |
console.log(result); | |
} | |
}); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment