官方文档:链接
KV
js
// Worker
// 添加键值
await env.BotaKV.put('KEY1', 'VALUE1');
await env.BotaKV.put('KEY2', 'VALUE2');
await env.BotaKV.put('KEY3', 'VALUE3');
await env.BotaKV.put('KEY4', 'VALUE4');
// 删除键值
const deleteKV = await env.BotaKV.delete('KEY');
// 获取键值
const getKV = await env.BotaKV.get('KEY');
// 列举键值,prefix 筛选前缀,limit 限制数量,cursor 下一页
const listKV = await env.BotaKV.list({ prefix: "KEY",limit: 2});
const cursor = listKV.cursor;
const next_value = await env.BotaKV.list({ cursor: cursor });
console.log(next_value);
// Durable Objects
await this.env.BotaKV.put('KEY1', 'VALUE1');