我必须用post发送objectstore的数据到一个php文件,但我不能转换objectstore来发送它。
多谢帮忙
var xhttp = new XMLHttpRequest();
xhttp.open("POST", "../php/sincDATI.php", true);
var request = indexedDB.open("rsapp",1, "persistent");
request.onsuccess = function (evt) {
var db = request.result;
var tx = db.transaction(pTable,"readwrite");
var store = tx.objectStore(pTable);
*** TRAFORM store in json ????
xhttp.setRequestHeader("Content-type", "application/x-www-form-urlencoded");
xhttp.onreadystatechange = function() {
if (this.readyState == 4 && this.status == 200) {
};
};
xhttp.send(????);
};
1条答案
按热度按时间zysjyyx41#
我找到了一个发送JSON文件的解决方案,其中
XMLHttpRequest
自动转换为indexedDB objectStore
: