您最多选择25个主题
主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
30 行
833 B
30 行
833 B
package controllers
|
|
|
|
import (
|
|
"beeblog/service"
|
|
beego "github.com/beego/beego/v2/server/web"
|
|
)
|
|
|
|
type IndexController struct {
|
|
beego.Controller
|
|
}
|
|
|
|
func (this *IndexController) Get() {
|
|
blogService := service.BlogService{}
|
|
timeBlog, _ := blogService.IndexBlogs(12, 0)
|
|
this.Data["TimeBlog"] = timeBlog
|
|
browsBlog, _ := blogService.IndexBlogs(12, 1)
|
|
this.Data["BrowsBlog"] = browsBlog
|
|
likeBlog, _ := blogService.IndexBlogs(12, 2)
|
|
this.Data["LikeBlog"] = likeBlog
|
|
commentBlog, _ := blogService.IndexBlogs(12, 3)
|
|
this.Data["CommBlog"] = commentBlog
|
|
|
|
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.Data["IsHome"] = true
|
|
this.TplName = "index.html"
|
|
return
|
|
}
|
|
|