http://htmlten.com/slides
OMG, This presentation is an HTML5 website
# sudo aptitude install couchdb# /etc/init.d/couchdb start
$.ajax({
url: 'http://htmlten.com/db/couchdemo/',
type: 'PUT',
success: function(response){
console.log(response);
}
});
_all_dbs_all_docs
descending=truestartkey="doc2"endkey="doc3"
$.ajax({
url: 'http://htmlten.com/db/couchdemo/',
type: 'GET',
success: function(response){
console.log(response);
}
});
_all_dbs_all_docs
descending=truestartkey="doc2"endkey="doc3"
var newRecordId = '1',
newRecord = {
//'_id': '1',
'firstname' : 'boaz',
'lastname' : 'sender',
'twitterhandle' : '@boazsender',
'height' : '72'
};
$.ajax({
url: 'http://htmlten.com/db/couchdemo/' + newRecordId,
type: 'PUT',
data: JSON.stringify(newRecord),
dataType: 'JSON',
success: function(response){
console.log(response)
}
});
var recordId = '1';
$.ajax({
url: 'http://htmlten.com/db/couchdemo/' + recordId,
type: 'GET',
success: function(response){
console.log(response)
}
});
_all_docs
$.ajax({
url: 'http://htmlten.com/db/couchdemo/_design/heights/_view/users_by_height',
type: 'GET',
success: function(response){
console.log(response)
}
});