当前位置: 首页>>代码示例>>PHP>>正文


PHP ApiError::message方法代码示例

本文整理汇总了PHP中ApiError::message方法的典型用法代码示例。如果您正苦于以下问题:PHP ApiError::message方法的具体用法?PHP ApiError::message怎么用?PHP ApiError::message使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在ApiError的用法示例。


在下文中一共展示了ApiError::message方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: render

 public function render()
 {
     $params = [];
     $errorCode = ApiError::UNKNOWN;
     if ($this->exception instanceof LackParametersException) {
         $errorCode = ApiError::LACK_PARAMETERS;
         $params['lackParameters'] = explode(', ', $this->exception->getMessage());
     } elseif ($this->exception instanceof UnauthenticatedException) {
         $errorCode = ApiError::UNAUTHENTICATED;
     } elseif ($this->exception instanceof UnauthorizedException) {
         $errorCode = ApiError::NOT_AUTHENTICATED;
     }
     $statusCode = $this->response->statusCode();
     $errorMessages = ApiError::messages();
     if (isset($errorMessages[$statusCode])) {
         $errorCode = $statusCode;
     }
     if (Configure::read('debug') > 1 && $errorCode == ApiError::UNKNOWN) {
         $params['debug'] = ['message' => $this->exception->getMessage(), 'trace' => explode("\n", $this->exception->getTraceAsString())];
     }
     $params = ['success' => false, 'code' => $statusCode, 'errorCode' => $errorCode, 'errorMessage' => ApiError::message($errorCode)] + $params;
     $this->response->body(json_encode($params));
     $this->response->type('json');
     $this->response->send();
 }
开发者ID:hiromi2424,项目名称:api,代码行数:25,代码来源:ApiExceptionRenderer.php

示例2: failure

 /**
  * レスポンスを失敗状態にします。
  * エラーコード、HTTPステータスを指定できます。
  *
  * @param string $errorCode
  * @param mixed $httpStatus
  * @return void
  * @see ApiError
  */
 public function failure($errorCode, $httpStatus = 500)
 {
     $this->setResponse(['success' => false, 'code' => $httpStatus, 'errorCode' => $errorCode, 'errorMessage' => ApiError::message($errorCode)]);
 }
开发者ID:hiromi2424,项目名称:api,代码行数:13,代码来源:ApiComponent.php

示例3: failure

 /**
  * test failure() method
  *
  * @test
  */
 public function failure()
 {
     $this->generateComponent();
     $this->Api->failure(ApiError::VALIDATION_ERROR);
     $this->assertSame(['success' => false, 'code' => 500, 'errorCode' => ApiError::VALIDATION_ERROR, 'errorMessage' => ApiError::message(ApiError::VALIDATION_ERROR)], $this->Api->getResponse());
     $this->generateComponent();
     $this->Api->failure(ApiError::VALIDATION_ERROR, 501);
     $this->assertSame(501, $this->Api->getResponse()['code']);
 }
开发者ID:hiromi2424,项目名称:api,代码行数:14,代码来源:ApiComponentTest.php


注:本文中的ApiError::message方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。