码农笔录博客源码
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

31 行
815 B

6 年前
package controllers
import (
"github.com/astaxie/beego"
6 年前
"beeblog/service"
6 年前
)
type IndexController struct {
beego.Controller
}
func (this *IndexController) Get() {
6 年前
blogService := service.BlogService{}
timeBlog, _ := blogService.IndexBlogs(12, 0)
6 年前
this.Data["TimeBlog"] = timeBlog
6 年前
browsBlog, _ := blogService.IndexBlogs(12, 1)
6 年前
this.Data["BrowsBlog"] = browsBlog
6 年前
likeBlog, _ := blogService.IndexBlogs(12, 2)
6 年前
this.Data["LikeBlog"] = likeBlog
6 年前
commentBlog, _ := blogService.IndexBlogs(12, 3)
6 年前
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
6 年前
}