DOMException: Failed to execute 'add' on 'IDBObjectStore': Evaluating the object store's key path did not yield a value.
时间: 2024-05-22 20:10:06 浏览: 220
DOMException: play() failed because the user didn‘t interact wit
这是一个 IndexedDB 的错误,提示在执行 add 操作时,该对象存储的 keyPath 未返回值。有可能是你在定义对象存储时指定了 keyPath,但添加数据时没有设置该属性的值,或者该属性的值为 undefined。请检查你的代码,确保添加数据时设置了正确的 keyPath 值,并且该值不为 undefined。
阅读全文