SMIPLE BLOG 简单的博客平台
1、用户的登录注册 2、文章的增删改查 3、评论的增删改查
1、数据库表的设计与查询 2、后端项目搭建
users
字段 | 数据类型 | 含义 | 要求 |
---|---|---|---|
id | INT | 自增键 | 非空 |
name | VARCHAR(100) | 用户名 | 非空 |
pass | VARCHAR(100) | 密码 | 非空 |
avator | VARCHAR(100) | 头像 | 非空 |
moment | VARCHAR(100) | 注册时间 | 非空 |
uid | VARCHAR(100) | 用户id | 非空 |
增加:"insert into users set name=?,pass=?,avator=?,moment=?;"
删除:delete from users where name="${name}";
查询:select * from users where name="${name}";
posts
字段 | 数据类型 | 含义 | 要求 |
---|---|---|---|
id | INT | 自增键 | 非空 |
uid | VARCHAR(100) | 用户id | 非空 |
title | TEXT(0) | 标题 | 非空 |
content | TEXT(0) | 内容 | 非空 |
moment | VARCHAR(100) | 发布时间 | 非空 |
pid | VARCHAR(100) | 文章id | 非空 |
增加:"insert into posts set name=?,title=?,content=?,md=?,uid=?,moment=?,avator=?;"
更新:update posts set title=?,content=?,md=? where id=?
查询:select * from posts limit ${(page-1)*5},5;
删除:delete from posts where id = ${id}
comment
字段 | 数据类型 | 含义 | 要求 |
---|---|---|---|
id | INT | 自增键 | 非空 |
uid | VARCHAR(100) | 用户id | 非空 |
pid | VARCHAR(100) | 文章id | 非空 |
content | TEXT(0) | 评论内容 | 非空 |
moment | VARCHAR(100) | 评论时间 | 非空 |
增加:"insert into comment set name=?,content=?,moment=?,postid=?,avator=?;"
删除:delete from comment where id=${id}
查询:select * from comment where postid=${postId} order by id desc limit ${(page-1)*10},10;
更新:delete from comment where id=${id}
1、请求参数解析:koa-body:ctx.request.body/ctx.query
2、登录态:koa-session
3、路由:koa-router
config: 配置文件
controller:接口业务逻辑
routers:路由处理
middlewares:中间件文件
lib:数据库文件
参考文件:https://github.com/alsotang/node-lessons/tree/master/lesson6
测试内容是功能里的内容
https://www.npmjs.com/package/supervisor
https://github.com/liuxing/node-blog/blob/master/.eslintrc https://cn.eslint.org/docs/user-guide/configuring
postman
https://github.com/wclimb/Koa2-blog https://koa.bootcss.com/ https://www.zhihu.com/question/28557115/answer/47846156 https://www.npmjs.com/package/body-parser https://www.npmjs.com/package/koa-body
测试代码 sql语句写法 HTTP请求