真删除指定主键的单条数据记录.
destroy
删除单条记录(真删除)models.模型名称.Destroy
参数 | 类型 | 说明 | 示例 |
---|---|---|---|
args[0] | Object Row | 模型主键 | 1 |
null
无返回值
模型 | 模型定义 |
---|---|
user | 模型描述文件 |
models.user.Destroy
[1]
null
Flow
) 中调用:{"nodes": [{"name": "user","process": "models.user.Destroy","args": [1],"outs": []}]}
API
) 中调用:{"paths": [{"path": "/destroy/:id","method": "POST","process": "models.user.Destroy","in": ["$param.id"],"out": {"status": 200}}]}
POST /api/user/destroy/1
models/category.mod.yao
文件,写入以下内容:{"name": "书籍分类","table": {"name": "category","comment": "书籍分类"},"columns": [{"label": "ID","name": "id","type": "ID","comment": "ID","primary": true},{"label": "父级id","name": "parent_id","type": "integer","nullable": true},{"label": "分类名称","name": "name","type": "string","length": 128,"index": true}],"relations": {"book": {"type": "hasMany","model": "book","key": "category_id","foreign": "id","query": {}},"parent": {"type": "hasOne","model": "category","key": "id","foreign": "parent_id","query": {}}},"option": {"timestamps": true,"soft_deletes": true},"values": [{"id": 1,"parent_id": null,"name": "文史类"},{"id": 2,"parent_id": 1,"name": "历史"},{"id": 3,"parent_id": 1,"name": "古诗"},{"id": 4,"parent_id": null,"name": "理工类"},{"id": 5,"parent_id": 4,"name": "数学"},{"id": 6,"parent_id": 4,"name": "物理"}]}
function Destroy() {return Process("models.category.destroy", 9, {});}
运行 yao run scripts.test.Destroy
真删除指定主键的单条数据记录.
destroy
删除单条记录(真删除)models.模型名称.Destroy
参数 | 类型 | 说明 | 示例 |
---|---|---|---|
args[0] | Object Row | 模型主键 | 1 |
null
无返回值
模型 | 模型定义 |
---|---|
user | 模型描述文件 |
models.user.Destroy
[1]
null
Flow
) 中调用:{"nodes": [{"name": "user","process": "models.user.Destroy","args": [1],"outs": []}]}
API
) 中调用:{"paths": [{"path": "/destroy/:id","method": "POST","process": "models.user.Destroy","in": ["$param.id"],"out": {"status": 200}}]}
POST /api/user/destroy/1
models/category.mod.yao
文件,写入以下内容:{"name": "书籍分类","table": {"name": "category","comment": "书籍分类"},"columns": [{"label": "ID","name": "id","type": "ID","comment": "ID","primary": true},{"label": "父级id","name": "parent_id","type": "integer","nullable": true},{"label": "分类名称","name": "name","type": "string","length": 128,"index": true}],"relations": {"book": {"type": "hasMany","model": "book","key": "category_id","foreign": "id","query": {}},"parent": {"type": "hasOne","model": "category","key": "id","foreign": "parent_id","query": {}}},"option": {"timestamps": true,"soft_deletes": true},"values": [{"id": 1,"parent_id": null,"name": "文史类"},{"id": 2,"parent_id": 1,"name": "历史"},{"id": 3,"parent_id": 1,"name": "古诗"},{"id": 4,"parent_id": null,"name": "理工类"},{"id": 5,"parent_id": 4,"name": "数学"},{"id": 6,"parent_id": 4,"name": "物理"}]}
function Destroy() {return Process("models.category.destroy", 9, {});}
运行 yao run scripts.test.Destroy