码农笔录博客源码
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

77 lignes
1.7 KiB

il y a 6 ans
package controllers
import (
"github.com/astaxie/beego"
"beeblog/service"
il y a 6 ans
"beeblog/models"
)
il y a 6 ans
type PageController struct {
beego.Controller
}
func (this *PageController) Blog() {
il y a 6 ans
catService := service.CategoryService{}
cats, err := catService.GetCats()
if err != nil {
il y a 6 ans
this.Redirect("/404", 302)
return
}
this.Data["Cats"] = cats
il y a 6 ans
this.TplName = "iframe/blog.html"
}
il y a 6 ans
il y a 6 ans
func (this *PageController) IframeUser() {
il y a 6 ans
userService := service.UserService{}
il y a 6 ans
uid := this.GetSession("userid")
if uid == nil {
this.Data["IsLogin"] = false
} else {
this.Data["IsLogin"] = true
il y a 6 ans
if user, err := userService.GetUser(uid.(int64)); err == nil {
il y a 6 ans
this.Data["User"] = user
} else {
this.Data["User"] = &models.User{Id: uid.(int64)}
}
}
this.TplName = "iframe/user.html"
return
}
il y a 6 ans
func (this *PageController) IframeNote() {
il y a 6 ans
noteService := service.NoteService{}
il y a 6 ans
uid := this.GetSession("userid")
if uid == nil {
this.Data["IsLogin"] = false
il y a 6 ans
this.Data["NoteColl"] = []string{}
il y a 6 ans
}else {
this.Data["IsLogin"] = true
il y a 6 ans
noteColls,err:=noteService.GetNoteColl(uid.(int64))
il y a 6 ans
if err== nil {
this.Data["NoteColl"] = noteColls
}
}
il y a 6 ans
this.TplName = "iframe/note.html"
}
il y a 6 ans
il y a 6 ans
func (this *PageController) UsPage() {
this.Data["IsUs"] = true
this.Data["UserId"] = this.GetSession("userid")
this.Data["HeadImg"] = this.GetSession("headimg")
this.Data["NickName"] = this.GetSession("nickname")
this.Data["IsLogin"] = this.GetSession("nickname") != nil
il y a 6 ans
this.TplName = "us.html"
}
il y a 6 ans
func (this *PageController) PageNotFound() {
this.TplName = "404.html"
}
func (this *PageController) ServerError() {
this.TplName = "500.html"
}
il y a 6 ans
func (this *PageController) ServerDemined() {
this.TplName = "403.html"
}