login.go 587 B

12345678910111213141516171819202122232425262728
  1. package Services
  2. import (
  3. "github.com/gin-gonic/gin"
  4. "net/http"
  5. )
  6. func LoginCheck(name string, password string, c *gin.Context) map[string]bool {
  7. status := map[string]bool{
  8. "nameStatus": true,
  9. "passwordStatus": true,
  10. }
  11. if len(name) == 0 {
  12. c.JSON(http.StatusUnprocessableEntity, gin.H{
  13. "code": 422,
  14. "message": "用户名不能为空",
  15. })
  16. status["nameStatus"] = false
  17. }
  18. if len(password) == 0 {
  19. c.JSON(http.StatusUnprocessableEntity, gin.H{
  20. "code": 422,
  21. "message": "密码不能为空",
  22. })
  23. status["passwordStatus"] = false
  24. }
  25. return status
  26. }