當前位置: 首頁>>代碼示例>>Golang>>正文


Golang User.Insert方法代碼示例

本文整理匯總了Golang中blog/models.User.Insert方法的典型用法代碼示例。如果您正苦於以下問題:Golang User.Insert方法的具體用法?Golang User.Insert怎麽用?Golang User.Insert使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在blog/models.User的用法示例。


在下文中一共展示了User.Insert方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Golang代碼示例。

示例1: Add

//添加用戶
func (this *UserController) Add() {
	input := make(map[string]string)
	errmsg := make(map[string]string)
	if this.Ctx.Request.Method == "POST" {
		username := strings.TrimSpace(this.GetString("username"))
		password := strings.TrimSpace(this.GetString("password"))
		password2 := strings.TrimSpace(this.GetString("password2"))
		email := strings.TrimSpace(this.GetString("email"))
		active, _ := this.GetInt64("active")

		input["username"] = username
		input["password"] = password
		input["password2"] = password2
		input["email"] = email

		valid := validation.Validation{}

		if v := valid.Required(username, "username"); !v.Ok {
			errmsg["username"] = "請輸入用戶名"
		} else if v := valid.MaxSize(username, 15, "username"); !v.Ok {
			errmsg["username"] = "用戶名長度不能大於15個字符"
		}

		if v := valid.Required(password, "password"); !v.Ok {
			errmsg["password"] = "請輸入密碼"
		}

		if v := valid.Required(password2, "password2"); !v.Ok {
			errmsg["password2"] = "請再次輸入密碼"
		} else if password != password2 {
			errmsg["password2"] = "兩次輸入的密碼不一致"
		}

		if v := valid.Required(email, "email"); !v.Ok {
			errmsg["email"] = "請輸入email地址"
		} else if v := valid.Email(email, "email"); !v.Ok {
			errmsg["email"] = "Email無效"
		}

		if active > 0 {
			active = 1
		} else {
			active = 0
		}

		if len(errmsg) == 0 {
			var user models.User
			user.Username = username
			user.Password = models.Md5([]byte(password))
			user.Email = email
			user.Active = int8(active)
			if err := user.Insert(); err != nil {
				this.showmsg(err.Error())
			}
			this.Redirect("/admin/user/list", 302)
		}

	}

	this.Data["input"] = input
	this.Data["errmsg"] = errmsg
	this.display()
}
開發者ID:gusa1120,項目名稱:beego_sample,代碼行數:64,代碼來源:user.go


注:本文中的blog/models.User.Insert方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。