您最多能選擇 25 個主題
主題必須以字母或數字為開頭,可包含連接號「-」且最長為 35 個字元。
15 行
259 B
15 行
259 B
6 年前
|
package service
|
||
|
|
||
|
import (
|
||
|
"github.com/astaxie/beego/orm"
|
||
|
"beeblog/models"
|
||
|
)
|
||
|
|
||
|
func GetCats() ([]*models.Category, error) {
|
||
|
var notes []*models.Category
|
||
|
o := orm.NewOrm()
|
||
|
qs := o.QueryTable(models.Category{})
|
||
|
_, err := qs.All(¬es)
|
||
|
return notes, err
|
||
|
}
|