码农笔录博客源码
Não pode escolher mais do que 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

30 linhas
761 B

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