func DeleteBlog(ctx *middleware.Context, params martini.Params) { id := params["id"] blog := new(model.Blog) blog.Id = ParseInt(id) err := blog.Delete() PanicIf(err) ctx.Set("success", true) ctx.JSON(200, ctx.Response) }