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.
30 Zeilen
833 B
30 Zeilen
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
|
|
}
|
|
|