本文整理汇总了PHP中Symfony\Component\HttpKernel\Exception\NotFoundHttpException::getmessage方法的典型用法代码示例。如果您正苦于以下问题:PHP NotFoundHttpException::getmessage方法的具体用法?PHP NotFoundHttpException::getmessage怎么用?PHP NotFoundHttpException::getmessage使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Symfony\Component\HttpKernel\Exception\NotFoundHttpException
的用法示例。
在下文中一共展示了NotFoundHttpException::getmessage方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: render
/**
* Render an exception into an HTTP response.
* 该方法响应异常信息到客户端 : 该方法返回的数据必须是一个response对象
* 异常的处理是在请求结束前处理,因此这里的render 方法直接设定为返回异常信息给响应。
* @param \Illuminate\Http\Request $request
* @param \Exception $e
* @return \Illuminate\Http\Response
*/
public function render($request, Exception $e)
{
if ($e instanceof ModelNotFoundException) {
$e = new NotFoundHttpException($e->getMessage(), $e);
}
$msg = $e->getmessage();
if ($e instanceof InvalidArgumentException) {
return response()->json(['data' => $msg, 'state' => '901', 'timeStamp' => time()]);
}
if ($e instanceof UnexpectedValueException) {
return response()->json(['data' => $msg, 'state' => '902', 'timeStamp' => time()]);
}
if ($e instanceof SignatureInvalidException) {
return response()->json(['data' => $msg, 'state' => '903', 'timeStamp' => time()]);
// return response()->view('welcome', [], 503);
// return response("ddddd")->header("x-at",'xxx');
}
if ($e instanceof BeforeValidException) {
return response()->json(['data' => $msg, 'state' => '904', 'timeStamp' => time()]);
}
if ($e instanceof ExpiredException) {
return response()->json(['data' => $msg, 'state' => '905', 'timeStamp' => time()]);
}
if ($e instanceof CustomException) {
return response()->json(['data' => $msg, 'state' => '1005', 'timeStamp' => time()]);
}
return parent::render($request, $e);
}