register.go 603 B

1234567891011121314151617181920212223242526272829
  1. package Controllers
  2. import (
  3. "fmt"
  4. "github.com/gin-gonic/gin"
  5. Mysql "goLoad1/Databases"
  6. "goLoad1/Models/loginMondel"
  7. "goLoad1/Services"
  8. "net/http"
  9. )
  10. type RegisterInfo struct {
  11. }
  12. func (con RegisterInfo) RegisterController(c *gin.Context) {
  13. fmt.Print("执行")
  14. // 获取参数
  15. name := c.PostForm("userName")
  16. password := c.PostForm("password")
  17. status := Services.LoginCheck(name, password, c)
  18. if status["nameStatus"] && status["passwordStatus"] {
  19. data := loginMondel.Register{
  20. UserName: name,
  21. Password: password,
  22. }
  23. Mysql.DB.Create(&data)
  24. c.String(http.StatusOK, "成功")
  25. }
  26. }