issues
search
USTC3418Lab
/
Lab418Site
USTC网络安全实验室网站源码
The Unlicense
11
stars
2
forks
source link
简单的剪贴板功能
#6
Closed
EricJeffrey
closed
4 years ago
EricJeffrey
commented
4 years ago
短文本分享,类似于云剪贴板
前端
后端
短文本格式:
{id, string, timestamp}
,直接存放在数组中
接口
获取所有短文本 GET 无参数 返回JSON数组
[]
添加某个短文本 POST 参数:{string} 返回 {code, message}
数组设置上限(1000),超过此上限就移除时间戳最小(下标最小的)的
删除某个短文本 GET 参数:{id} 返回{code, message}
code, mes: 200 SUCCESS, 400 FAIL
后端我也直接写了吧
EricJeffrey
commented
4 years ago
已完成 #7
短文本分享,类似于云剪贴板
前端
{id, string, timestamp}
,直接存放在数组中[]
后端我也直接写了吧