您好我正在研究pimcore cms。
我在保存对象时调用自定义API,并且它有一些自定义错误消息。
现在pimcore显示
“对象无法保存”。
如何在错误框中显示自定义消息而不是此默认消息?
我的API会在发生错误时返回错误消息,但我仍然坚持如何使用pimcore错误消息传递它。
我们将不胜感激。
由于
答案 0 :(得分:2)
我认为您正在使用Pimcore事件来完成您想要实现的目标。要显示自定义消息,您只需要抛出ValidationException,如下所示:
throw new \Pimcore\Model\Element\ValidationException("This is your custom error message", 1234);
此处的文档Example of custom error handling using the Event API
部分也对此进行了描述:
https://www.pimcore.org/docs/latest/Extending_Pimcore/Event_API_and_Event_Manager.html