码农笔录博客源码
您最多能選擇 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() {
5 年前
blogService := service.BlogService{}
timeBlog, _ := blogService.IndexBlogs(12, 0)
6 年前
this.Data["TimeBlog"] = timeBlog
5 年前
browsBlog, _ := blogService.IndexBlogs(12, 1)
6 年前
this.Data["BrowsBlog"] = browsBlog
5 年前
likeBlog, _ := blogService.IndexBlogs(12, 2)
6 年前
this.Data["LikeBlog"] = likeBlog
5 年前
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 年前
}