-1
テキストデータを含むファイルを保存しようとしています。テキストデータが保存されますが、リンクはwebkitRelativePathパスがインデックスDB内の空示していることは、これはインデックス化DBに私の追加データのコードですインデックス付きデータベースに画像を保存するときにwebkitRelativePathが空です
function add() {
var a = document.getElementById("userfile");
var b = a.files[0];
var request = db.transaction(["todostore"], "readwrite")
.objectStore("todostore")
.add({ timestamp: "KP" + (new Date()).getTime(), todo: $("#todo").val(),
price:$("#toprice").val(),image:b});
};