2023-04-11 21:51:21 +08:00

17 lines
791 B
Markdown
Raw 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. 用户登录成之后才能访问index路径下的页面
2. 用户如果没有登录,那么会自动跳转到登录界面
3. 如果用户请求的是一个压根就不存在的页面依然强制回到登录界面如果已经登录那么回到index首页
登录解决方案
1. 无论是否已经登录,直接向后端请求用户信息
2. 如果请求成功,那么说明肯定是已经登录了
3. 如果请求失败,那么说明没有登录,跳转到登录界面