showcase/wwwroot/api/showcase_post_delete.dspy

6 lines
241 B
Plaintext

try:
result = await delete_showcase_post({"id": params_kw.get('id', '')})
return result
except Exception as e:
return {"widgettype":"Error","options":{"title":"操作失败","message":str(e),"cwidth":16,"cheight":9,"timeout":3}}