溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

如何解決PHP使Laravel為JSON REST API返回自定義錯(cuò)誤的問(wèn)題

發(fā)布時(shí)間:2021-07-12 14:20:01 來(lái)源:億速云 閱讀:138 作者:小新 欄目:開發(fā)技術(shù)

這篇文章給大家分享的是有關(guān)如何解決PHP使Laravel為JSON REST API返回自定義錯(cuò)誤的問(wèn)題的內(nèi)容。小編覺得挺實(shí)用的,因此分享給大家做個(gè)參考,一起跟隨小編過(guò)來(lái)看看吧。

我正在開發(fā)某種RESTful API.發(fā)生一些錯(cuò)誤時(shí),我會(huì)拋出一個(gè)App :: abort($code,$message)錯(cuò)誤.

問(wèn)題是:我希望他用鍵“代碼”和“消息”拋出一個(gè)json形成的數(shù)組,每個(gè)數(shù)組都包含上述數(shù)據(jù).

Array
(
  [code] => 401
  [message] => "Invalid User"
)

有沒(méi)有人知道是否可能,如果是,我該怎么做?

去你的app / start / global.php.

這將將401和404的所有錯(cuò)誤轉(zhuǎn)換為自定義json錯(cuò)誤,而不是Whoops stacktrace.加這個(gè):

App::error(function(Exception $exception, $code)
{
  Log::error($exception);
  $message = $exception->getMessage();
  // switch statements provided in case you need to add
  // additional logic for specific error code.
  switch ($code) {
    case 401:
      return Response::json(array(
          'code'   => 401,
          'message'  => $message
        ), 401);
    case 404:
      $message      = (!$message ? $message = 'the requested resource was not found' : $message);
      return Response::json(array(
          'code'   => 404,
          'message'  => $message
        ), 404);    
  }
});

這是處理此錯(cuò)誤的眾多選項(xiàng)之一.

制作API最好創(chuàng)建自己的幫助器,如Responser :: error(400,'damn'),擴(kuò)展了Response類.

有點(diǎn)像:

public static function error($code = 400, $message = null)
{
  // check if $message is object and transforms it into an array
  if (is_object($message)) { $message = $message->toArray(); }
  switch ($code) {
    default:
      $code_message = 'error_occured';
      break;
  }
  $data = array(
      'code'   => $code,
      'message'  => $code_message,
      'data'   => $message
    );
  // return an error
  return Response::json($data, $code);
}

感謝各位的閱讀!關(guān)于“如何解決PHP使Laravel為JSON REST API返回自定義錯(cuò)誤的問(wèn)題”這篇文章就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,讓大家可以學(xué)到更多知識(shí),如果覺得文章不錯(cuò),可以把它分享出去讓更多的人看到吧!

向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI