29 lines
694 B
TypeScript
29 lines
694 B
TypeScript
import type { NextApiRequest, NextApiResponse } from 'next';
|
|
import { jsonRes } from '@/service/response';
|
|
import { connectToDatabase, Chat } from '@/service/mongo';
|
|
|
|
export default async function handler(req: NextApiRequest, res: NextApiResponse) {
|
|
try {
|
|
const { chatId } = req.query as { chatId: string };
|
|
|
|
if (!chatId) {
|
|
throw new Error('缺少参数');
|
|
}
|
|
|
|
await connectToDatabase();
|
|
|
|
// 删除最一条数据库记录, 也就是预发送的那一条
|
|
await Chat.findByIdAndUpdate(chatId, {
|
|
$pop: { content: 1 },
|
|
updateTime: Date.now()
|
|
});
|
|
|
|
jsonRes(res);
|
|
} catch (err) {
|
|
jsonRes(res, {
|
|
code: 500,
|
|
error: err
|
|
});
|
|
}
|
|
}
|