消息通知错误catch admin-on-rest

时间:2018-03-21 21:11:06

标签: 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消息。

我该怎么做?

1 个答案:

答案 0 :(得分:1)

我已经解决了。

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