我的基本dexie数据库方案是这样的。
const db = new Dexie('MyDatabase');
// Declare tables, IDs and indexes
db.version(1).stores({
myrecords: 'record_id'
});
我想将我的record_id
用作唯一密钥。在indexeddb中,我可以像下面这样
var myrecordsObjectStore = db.createObjectStore('myrecords' , {
keyPath: 'record_id'
});
答案 0 :(得分:2)