本文整理汇总了Golang中github.com/royburns/roysblog/models.Post.Delete方法的典型用法代码示例。如果您正苦于以下问题:Golang Post.Delete方法的具体用法?Golang Post.Delete怎么用?Golang Post.Delete使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类github.com/royburns/roysblog/models.Post
的用法示例。
在下文中一共展示了Post.Delete方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Golang代码示例。
示例1: Batch
//批处理
func (this *ArticleController) Batch() {
ids := this.GetStrings("ids[]")
op := this.GetString("op")
idarr := make([]int64, 0)
for _, v := range ids {
if id, _ := strconv.Atoi(v); id > 0 {
idarr = append(idarr, int64(id))
}
}
var post models.Post
switch op {
case "topub": //移到已发布
post.Query().Filter("id__in", idarr).Update(orm.Params{"status": 0})
case "todrafts": //移到草稿箱
post.Query().Filter("id__in", idarr).Update(orm.Params{"status": 1})
case "totrash": //移到回收站
post.Query().Filter("id__in", idarr).Update(orm.Params{"status": 2})
case "delete": //批量删除
for _, id := range idarr {
obj := models.Post{Id: id}
if obj.Read() == nil {
obj.Delete()
}
}
}
this.Redirect(this.Ctx.Request.Referer(), 302)
}
示例2: Delete
//删除
func (this *ArticleController) Delete() {
id, _ := this.GetInt64("id")
post := models.Post{Id: id}
if post.Read() == nil {
post.Delete()
}
models.Cache.Delete("latestblog")
this.Redirect("/admin/article/list", 302)
}