从后端(生命周期钩子、控制器)触发 strapi ui toast 通知(警报)

Trigger strapi ui toast notification (alert) from backend(lifecycle hooks, controllers)

提问人:saimarshadd 提问时间:11/15/2023 更新时间:11/15/2023 访问量:22

问:

我正在我的strapi应用程序的后端编写一些自定义代码。生命周期钩子是具体的,我想触发通知并将其显示给用户。基本上,我有一个afterCreate生命周期钩子,当我创建帖子时会触发它,并且在创建帖子后我正在做一些工作,假设当我收到响应时,我正在调用另一个api,我想在管理UI上向用户显示它,并希望显示strapi的默认警报,但带有我的消息。以下是代码供参考

afterCreate: async ({ result }) => {
    //gets triggered when the post is created
    //I perform an action here
    //if the action succeeds i want to show the default strapi success alert with my message
    //if the action fails i want to show the default strapi error alert with my message
  },
JavaScript 内容管理系统 strapi

评论


答: 暂无答案