Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 | import Router from '@koa/router'; import { commentsService } from './comments.service'; const router = new Router({ prefix: '/api/comments' }); // 测试用户ID const TEST_USER_ID = 1; /** * 获取章节评论 * GET /api/comments/:chapterId */ router.get('/:chapterId', async (ctx) => { try { const chapterId = parseInt(ctx.params.chapterId); const comments = await commentsService.getCommentsByChapterId(chapterId); ctx.body = { code: 0, message: 'success', data: comments, }; } catch (error: any) { ctx.body = { code: 400, message: error.message || '获取评论失败', }; } }); /** * 添加评论 * POST /api/comments */ router.post('/', async (ctx) => { try { const { chapterId, content, rating } = ctx.request.body as { chapterId: number; content: string; rating: number; }; const comment = await commentsService.addComment(TEST_USER_ID, chapterId, content, rating); ctx.body = { code: 0, message: '评论成功', data: comment, }; } catch (error: any) { ctx.body = { code: 400, message: error.message || '评论失败', }; } }); export default router; |