mirror of
https://github.com/astaxie/beego.git
synced 2024-11-22 09:30:56 +00:00
beego: flash add success & Set
This commit is contained in:
parent
e1475b72b9
commit
8164367762
18
flash.go
18
flash.go
@ -32,6 +32,24 @@ func NewFlash() *FlashData {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Set message to flash
|
||||||
|
func (fd *FlashData) Set(key string, msg string, args ...interface{}) {
|
||||||
|
if len(args) == 0 {
|
||||||
|
fd.Data[key] = msg
|
||||||
|
} else {
|
||||||
|
fd.Data[key] = fmt.Sprintf(msg, args...)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Success writes success message to flash.
|
||||||
|
func (fd *FlashData) Success(msg string, args ...interface{}) {
|
||||||
|
if len(args) == 0 {
|
||||||
|
fd.Data["success"] = msg
|
||||||
|
} else {
|
||||||
|
fd.Data["success"] = fmt.Sprintf(msg, args...)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
// Notice writes notice message to flash.
|
// Notice writes notice message to flash.
|
||||||
func (fd *FlashData) Notice(msg string, args ...interface{}) {
|
func (fd *FlashData) Notice(msg string, args ...interface{}) {
|
||||||
if len(args) == 0 {
|
if len(args) == 0 {
|
||||||
|
Loading…
Reference in New Issue
Block a user