Vous ne pouvez pas sélectionner plus de 25 sujets
Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
44 lignes
690 B
44 lignes
690 B
il y a 6 ans
|
package service
|
||
|
|
||
|
import (
|
||
|
"github.com/astaxie/beego/orm"
|
||
|
"beeblog/models"
|
||
|
)
|
||
|
|
||
|
type BlogService struct {
|
||
|
}
|
||
|
|
||
|
func GetBlog(id int64) (*models.Blog, error) {
|
||
|
o := orm.NewOrm()
|
||
|
blog := &models.Blog{Id:id}
|
||
|
err := o.Read(blog)
|
||
|
if err != nil {
|
||
|
return nil, err
|
||
|
}
|
||
|
return blog, nil
|
||
|
}
|
||
|
|
||
|
|
||
|
func FindBlogs() ([]*models.Blog, error) {
|
||
|
o := orm.NewOrm()
|
||
|
qs := o.QueryTable(&models.Blog{})
|
||
|
var blogs []*models.Blog
|
||
|
_, err := qs.Filter("Delflag", 0).All(&blogs)
|
||
|
if err != nil {
|
||
|
return nil, err
|
||
|
}
|
||
|
return blogs, nil
|
||
|
}
|
||
|
|
||
|
func SaveBlog(blog *models.Blog) error {
|
||
|
o := orm.NewOrm()
|
||
|
id, eror := o.Insert(blog)
|
||
|
if eror != nil {
|
||
|
return eror
|
||
|
} else {
|
||
|
blog.Id = id
|
||
|
o.Commit()
|
||
|
}
|
||
|
return nil
|
||
|
}
|