-1
我試圖用文本數據保存文件。文本數據保存,但該鏈接的webkitRelativePath路徑顯示在索引數據庫空的,這是我添加數據的代碼到索引數據庫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});
};