本文整理匯總了Golang中blog/models.Post.Delete方法的典型用法代碼示例。如果您正苦於以下問題:Golang Post.Delete方法的具體用法?Golang Post.Delete怎麽用?Golang Post.Delete使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類blog/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)
}