码农笔录博客源码
您最多能選擇 25 個主題 主題必須以字母或數字為開頭,可包含連接號「-」且最長為 35 個字元。

18 行
316 B

package service
import (
"github.com/astaxie/beego/orm"
"beeblog/models"
)
6 年前
type CategoryService struct {
}
func (this *CategoryService) GetCats() ([]*models.Category, error) {
var notes []*models.Category
o := orm.NewOrm()
qs := o.QueryTable(models.Category{})
_, err := qs.All(&notes)
return notes, err
}