indexedDB将记录添加到objectStore只工作一次

oprakyz7  于 2022-12-09  发布在  IndexedDB
关注(0)|答案(2)|浏览(198)

我试图理解indexedDB是如何工作的,并写了一个相当基本的网站访问者跟踪器。这是第一次工作。当页面第一次加载时,一切都按预期工作。我可以看到数据被添加到我的objectStore中。
现在我每次刷新页面都没有按预期添加另一条记录。我做得不对吗?欢迎您提供任何指导或帮助。

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="utf-8">
  <meta http-equiv="X-UA-Compatible" content="IE=edge">
  <meta name="viewport" content="width=device-width, initial-scale=1">

  <!-- The above 3 meta tags *must* come first in the head; any other 
  head content must come *after* these tags -->

  <meta name="description" content="">
  <meta name="author" content="">

  <script language="JavaScript" src="http://www.geoplugin.net
  /javascript.gp" type="text/javascript"></script>

</head>
<body>
  // UI here
</body>
<script>
  var timeDate = new Date();
  var tD=timeDate.toString();
  alert(timeDate);          

  var ip = geoplugin_request();           // get client ip
  alert(ip);

  var city = geoplugin_city();            // get client city
  alert(city);

  var country = geoplugin_countryName() ; // get client country
  alert(country);

  var os = navigator.oscpu;               // get platform info
  alert(os);

  window.indexedDB = window.indexedDB || window.mozIndexedDB || 
  window.webkitIndexedDB || window.msIndexedDB;

  //prefixes of window.IDB objects
  window.IDBTransaction = window.IDBTransaction || 
  window.webkitIDBTransaction || window.msIDBTransaction;
  window.IDBKeyRange = window.IDBKeyRange || window.webkitIDBKeyRange || 
  window.msIDBKeyRange

  if (!window.indexedDB) {
    window.alert("Your browser doesn't support a stable version of IndexedDB.")
  }

  var visitorInfo = [{ 
         date   : tD, 
         ip     : ip, 
         city   : city, 
         country: country,
         os     :os },            
     ];

     var db;
     var request = window.indexedDB.open("visitor", 1);

     request.onerror = function(event) {
        console.log("error: ");
     };

     request.onsuccess = function(event) {
        db = request.result;
        console.log("success: "+ db);
     };

     request.onupgradeneeded = function(event) {
        var db = event.target.result;

        if(!db.objectStoreNames.contains("userinfo")){
            console.log("creating userinfo table..");
            //var objectStore = db.createObjectStore("userinfo", {keyPath: "ip",autoIncrement:true});            
            var objectStore = db.createObjectStore("userinfo", {keyPath: "ip"});            
        }
        else{
            console.log("userinfo exists");
            }

        for (var i in visitorInfo) {
           objectStore.add(visitorInfo[i]);
        }
     }
vsdwdz23

vsdwdz231#

插入对象的代码位于onupgradeneded处理程序中。onupgradeneded处理程序函数仅在首次创建数据库或增加版本时运行。
另一方面,www.example.com调用的成功处理程序indexedDB.open每次都会运行,无论是在创建、升级数据库时还是刚刚打开数据库时。
因此,您希望将插入对象的代码从onupgradeneded处理程序移到success处理程序中。

0lvr5msh

0lvr5msh2#

我也遇到过同样的问题。在我的例子中,有两件事导致了这个问题。
1.如果已经创建了表/indexdb,请使用onsuccess处理程序。
1.这是一个愚蠢的部分,但我犯了这个错误。如果你是通过浏览器开发者工具查看数据,当你点击odjectstore/table时,indexDB本身并不会更新记录。你必须点击indexDB窗口中应用程序部分下的刷新按钮来查看记录是否已经创建。刷新按钮在数据集的左角。

相关问题