消息通知错误捕获 admin-on-rest

message notification error catch admin-on-rest

我尝试像这样在通知中显示捕获错误:

  .catch(e => {
    console.error('catch', e);
    showNotification(e, 'warning');
  });

这行不通。

我按照 Actions admin-on-rest

上的说明进行操作

例如:

        .catch((e) => {
            console.error(e);
            showNotification('Error: comment not approved', 'warning')
        });

但我想在 showNotification 中显示 e 消息。

我该怎么做?

我已经解决了。

   .catch(e => {
        console.error('Error en handleUploadFile: ', e);
        showNotification(`Error: ${e.message}`, 'warning');
      });