这是一个基于 Cloudflare Workers 的 TodoList API
你可以使用以下工具测试API:
// 获取所有待办事项
fetch('/api/todos')
.then(res => res.json())
.then(data => console.log(data));
// 创建新待办事项
fetch('/api/todos', {
method: 'POST',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify({ text: '学习Vue3' })
})
.then(res => res.json())
.then(data => console.log(data));