全局计数器

点击 — 添加你的投票

每次点击都会进入共享数据库。看看我们有多少人?

总点击数
正在连接数据库…
01 点击大按钮
02 计数将为所有人更新
需要数据库设置

在 Supabase 中创建 button_clicks 表并允许匿名添加:

create table button_clicks (id bigint generated by default as identity primary key, created_at timestamptz default now());
alter table button_clicks enable row level security;
create policy "public insert" on button_clicks for insert to anon with check (true);
create policy "public read" on button_clicks for select to anon using (true);