码农笔录博客源码
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.

20 wiersze
302 B

6 lat temu
package controllers
import (
"github.com/astaxie/beego"
"fmt"
"beeblog/service"
6 lat temu
)
type IndexController struct {
beego.Controller
}
func (c *IndexController) Get() {
blogs,_ := service.FindBlogs()
fmt.Println(blogs)
c.Data["Blogs"] = blogs
6 lat temu
c.Data["IsHome"] = true
6 lat temu
c.TplName = "index.html"
}