Slide 67
Slide 67 text
db.transaction("w", db.messages, function() {
db.messages.put({
from: FROM_NUMBER,
to: TO_NUMBER,
createAt: new Date(),
body: "Service Workers rock "
}).then(function(message){
console.log("Yay!");
});
});
01.
02.
03.
04.
05.
06.
07.
08.
09.
10.