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


Golang peony.Flash類代碼示例

本文整理匯總了Golang中github.com/joinhack/peony.Flash的典型用法代碼示例。如果您正苦於以下問題:Golang Flash類的具體用法?Golang Flash怎麽用?Golang Flash使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。


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

示例1: Save

//@Mapper("/admin/user/save")
func (u *User) Save(user *model.User, opType string, flash *peony.Flash) peony.Renderer {
	var back interface{} = (*User).Add
	if opType == "edit" {
		back = (*User).Edit
	}
	if len(user.LoginId) == 0 {
		flash.Error("登錄ID不能為空")
		return peony.Redirect(back, map[string]interface{}{"id": user.Id})
	}
	if len(user.Name) == 0 {
		flash.Error("名字不能為空")
		return peony.Redirect(back, map[string]interface{}{"id": user.Id})
	}
	if len(user.Password) < 6 {
		flash.Error("密碼長度不夠")
		return peony.Redirect(back, map[string]interface{}{"id": user.Id})
	}
	if opType == "edit" {
		flash.Success(user.LoginId + "修改成功")
		engine.Id(user.Id).AllCols().Update(user)
	} else {
		flash.Success(user.LoginId + "添加成功")
		engine.Insert(user)
	}
	return peony.Redirect((*User).Users)
}
開發者ID:Joinhack,項目名稱:fragement,代碼行數:27,代碼來源:user.go

示例2: Save

//@Mapper("/admin/vendor/save")
func (v *Vendor) Save(vendor *model.Vendor, opType string, flash *peony.Flash) peony.Renderer {
	var back interface{} = (*Vendor).Add
	if opType == "edit" {
		back = (*Vendor).Edit
	}
	if len(vendor.Name) == 0 {
		flash.Error("名字不能為空")
		return peony.Redirect(back, map[string]interface{}{"id": vendor.Id})
	}
	if vendor.VendorId == 0 {
		flash.Error("VendorId不能為空")
		return peony.Redirect(back, map[string]interface{}{"id": vendor.Id})
	}

	if opType == "edit" {
		flash.Success(vendor.Name + "修改成功")
		engine.Id(vendor.Id).AllCols().Update(vendor)
	} else {
		flash.Success(vendor.Name + "添加成功")
		engine.Insert(vendor)
	}
	return peony.Redirect((*Vendor).Vendors)
}
開發者ID:Joinhack,項目名稱:fragement,代碼行數:24,代碼來源:radius.go

示例3: Del

//@Mapper("/admin/vendor/<id>/del")
func (u *Vendor) Del(id int64, flash *peony.Flash) peony.Renderer {
	var vendor = &model.Vendor{}
	engine.Id(id).Delete(vendor)
	flash.Success(fmt.Sprintf("廠商:%s 刪除成功~!", vendor.Name))
	return peony.Redirect((*Vendor).Vendors)
}
開發者ID:Joinhack,項目名稱:fragement,代碼行數:7,代碼來源:radius.go

示例4: Del

//@Mapper("/admin/user/<id>/del")
func (u *User) Del(id int64, flash *peony.Flash) peony.Renderer {
	var user = &model.User{}
	engine.Id(id).Delete(user)
	flash.Success(fmt.Sprintf("帳號:%s 刪除成功~!", user.LoginId))
	return peony.Redirect((*User).Users)
}
開發者ID:Joinhack,項目名稱:fragement,代碼行數:7,代碼來源:user.go


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