選択できるのは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
|
||
|
}
|