Non puoi selezionare più di 25 argomenti
Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
package controllers
import (
"github.com/astaxie/beego"
"beeblog/service"
"beeblog/models"
)
type PageController struct {
beego . Controller
}
// @router /iframe/blog [get]
func ( this * PageController ) Blog ( ) {
cats , err := service . GetCats ( )
if err != nil {
this . Redirect ( "/500" , 302 )
return
}
this . Data [ "Cats" ] = cats
this . TplName = "iframe/blog.html"
}
// @router /iframe/user [get]
func ( this * PageController ) IframeUser ( ) {
uid := this . GetSession ( "userid" )
if uid == nil {
this . Data [ "IsLogin" ] = false
} else {
this . Data [ "IsLogin" ] = true
if user , err := service . GetUser ( uid . ( int64 ) ) ; err == nil {
this . Data [ "User" ] = user
} else {
this . Data [ "User" ] = & models . User { Id : uid . ( int64 ) }
}
}
this . TplName = "iframe/user.html"
return
}
// @router /iframe/note [get]
func ( this * PageController ) IframeNote ( ) {
this . TplName = "iframe/note.html"
}
// @router /404 [get]
func ( this * PageController ) PageNotFound ( ) {
this . TplName = "404.html"
}
// @router /500 [get]
func ( this * PageController ) ServerError ( ) {
this . TplName = "500.html"
}
// @router /403 [get]
func ( this * PageController ) ServerDemined ( ) {
this . TplName = "403.html"
}