let transaction = db.transaction(['myStore'], 'readonly'); let objectStore = transaction.objectStore('myStore'); let index = objectStore.index('name'); let cursor = index.openCursor(); cursor.onsuccess = function(event) { let result = event.target.result; if (result) { let data = result.value; let sceneData = JSON.parse(data.name); editor.fromJSON(sceneData); console.log('数据库',JSON.parse(data.name)); // 输出存储的数据 result.continue(); loadingElement.remove(); } }; cursor.onerror = function(event) { console.error("数据库读取失败", event.target.error); loadingElement.remove(); // 执行另一个函数 }; transaction.oncomplete = function(event) { db.close(); };上文中判断读取的数据库为空时在控制台打印数据库为空
时间: 2024-03-20 17:38:51 浏览: 112
org.springframework.transaction-3.1.2.release.jar
如果数据库中没有任何数据,则在 `cursor.onsuccess` 事件中 `result` 为 `null`。此时,你可以在该事件中添加一个判断语句,例如:
```
cursor.onsuccess = function(event) {
let result = event.target.result;
if (result) {
let data = result.value;
let sceneData = JSON.parse(data.name);
editor.fromJSON(sceneData);
console.log('数据库', JSON.parse(data.name)); // 输出存储的数据
result.continue();
loadingElement.remove();
} else {
console.log('数据库为空');
loadingElement.remove();
}
};
```
如果数据库为空,则会输出 `数据库为空`。注意,`result` 为 `null` 不代表读取数据库失败,只是表示没有数据可以读取了。如果读取数据库失败,应该在 `cursor.onerror` 事件中输出错误信息。
阅读全文