gpt4 book ai didi

javascript - 在 Dexie 数据库模式中指定不同的唯一键?

转载 作者:行者123 更新时间:2023-12-01 00:36:53 24 4
gpt4 key购买 nike

我的基本 dexie 数据库方案是这样的。

const db = new Dexie('MyDatabase');

// Declare tables, IDs and indexes
db.version(1).stores({
myrecords: 'record_id'
});

我想使用我的 record_id 作为唯一 key 。在indexeddb中我可以像下面这样做

 var myrecordsObjectStore = db.createObjectStore('myrecords' , {
keyPath: 'record_id'
});

最佳答案

应该使用 & 前缀来实现唯一,如文档中所述

db.version(1).stores({
myrecords: '&record_id'
});

参见Dexie Quick Reference

关于javascript - 在 Dexie 数据库模式中指定不同的唯一键?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58050976/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com