码农笔录博客源码
Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

31 Zeilen
815 B

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