码农笔录博客源码
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

76 行
1.6 KiB

6年前
package controllers
import (
"github.com/astaxie/beego"
"beeblog/service"
"beeblog/models"
)
6年前
type PageController struct {
beego.Controller
}
func (this *PageController) Blog() {
6年前
catService := service.CategoryService{}
cats, err := catService.GetCats()
if err != nil {
6年前
this.Redirect("/404", 302)
return
}
this.Data["Cats"] = cats
6年前
this.TplName = "iframe/blog.html"
}
func (this *PageController) IframeUser() {
6年前
userService := service.UserService{}
uid := this.GetSession("userid")
if uid == nil {
this.Data["IsLogin"] = false
} else {
this.Data["IsLogin"] = true
6年前
if user, err := userService.GetUser(uid.(int64)); err == nil {
this.Data["User"] = user
} else {
this.Data["User"] = &models.User{Id: uid.(int64)}
}
}
this.TplName = "iframe/user.html"
return
}
func (this *PageController) IframeNote() {
6年前
noteService := service.NoteService{}
6年前
uid := this.GetSession("userid")
if uid == nil {
this.Data["IsLogin"] = false
}else {
this.Data["IsLogin"] = true
6年前
noteColls,err:=noteService.GetNoteColl(uid.(int64))
6年前
if err== nil {
this.Data["NoteColl"] = noteColls
}
}
this.TplName = "iframe/note.html"
}
6年前
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
this.TplName = "us.html"
}
6年前
func (this *PageController) PageNotFound() {
this.TplName = "404.html"
}
func (this *PageController) ServerError() {
this.TplName = "500.html"
}
func (this *PageController) ServerDemined() {
this.TplName = "403.html"
}