代码拉取完成,页面将自动刷新
package xginxalbumn
import (
"encoding/json"
"gitee.com/xiaoyutab/xgotool/optional/xalbum"
"gitee.com/xiaoyutab/xgotool/xgin"
"gitee.com/xiaoyutab/xgotool/xstring"
"github.com/gin-gonic/gin"
)
// 删除相册
func remove(c *gin.Context) *xgin.Response {
type temp_struct struct {
Id json.Number `json:"id" form:"id" xml:"id"` // 相册ID
}
temp := temp_struct{}
if err := xgin.Bind(c, &temp); err != nil {
return xgin.Resp().Error(err)
}
type temp_struct_used struct {
Id uint // 相册ID
}
param := temp_struct_used{}
param.Id = xstring.JUint(temp.Id) // 相册ID
// ApiPost软件所需要的参数描述格式:
// [{"is_checked":1,"key":"id","type":"Text","not_null":1,"field_type":"Integer","value":"","description":"相册ID"}]
// 其他软件所需要的KV键值对描述
// {"id":"相册ID"}
// 本命令执行参数【留做备份,以便后期使用/修改】
// id uint "相册ID" 1
// id参数必填性效验
if param.Id == 0 {
return xgin.Resp().ErrorString("相册ID(id) 不能为空")
}
inf, err := xalbum.Info(param.Id)
if err != nil {
return xgin.Resp().Error(err)
}
if inf.Uid != c.GetUint("uid") {
return xgin.Resp().ErrorAuth()
}
inf.IsDeleted = 1
err = xalbum.Create(inf)
if err != nil {
return xgin.Resp().Error(err)
}
return xgin.Resp().SuccessEmpty()
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。