码农笔录博客源码
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.

30 lignes
761 B

il y a 6 ans
package controllers
import (
"github.com/astaxie/beego"
il y a 6 ans
"beeblog/service"
il y a 6 ans
)
type IndexController struct {
beego.Controller
}
il y a 6 ans
func (this *IndexController) Get() {
il y a 6 ans
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"
il y a 6 ans
return
il y a 6 ans
}