Files
2024-09-27 02:06:13 +08:00

20 lines
416 B
Plaintext
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

1点击进入详情(实现)
3用户的登录注册
2实现对小说收藏(添加进入书架)
4小说的阅读(实现)
/**
* 设计思路:
* 1用户登录的时候需要传递账号密码
* 2同时还必须提交客户端的ip地址
* 3服务器session存储用户登录成功后的状态值
* 4将session和ip地址绑定
*
* 5防止表单注入过滤接口参数
*
*/