📜  带有错误响应的响应 - Javascript 代码示例

📅  最后修改于: 2022-03-11 15:03:28.847000             🧑  作者: Mango

代码示例1
// A sample response
{
  errors: [{
    'status': 'InvalidError'
    'message': 'Invalid value for email',
    ... // Other details of the error
  }, {
    ... // Next error object
  }],
  data: {
  ... // Any data
  }
}