首页 > 作文

Laravel框架实现修改登录和注册接口数据返回格式的方法

更新时间:2023-04-06 10:21:34 阅读: 评论:0

本文实例讲述了laravel框架实现修改登录和注册接口数据返回格式的方法。分享给大家供大家参考,具体如下:

1、背景:需要将所有的数据返回格式统一成retcode/retmsg/data

2、登陆接口:

文件目录:app/http/controllers/auth/logincontroller

先写登陆接口是因为修改登录接口比注册接口要简单许多

登录接口中的第一句

u authenticatesurs;

可以进去修改登录验证内容(默认是email+password登录),可以修改

validatelogin()或者直接修改urname(),将email改成name,即可用name+password登录了

修改登录接口数据返回格式login()方法

public function login(request $request){    $this->validatelogin($request);    if ($this->attemptlogin($request)) {      $ur = $this->guard()->us手机木马杀毒er();      $ur->generatetoken();      $ret=new retobject();      $ret->retcode="0000";      $ret->retmsg='success';      $ret->data= $ur->toarray();    }el{      $ret=new retobject();      $ret->retcode="0001";      $ret->retmsg='failed';      $ret->data= null;    }    return respon()->json($ret);}

直接修改login方法中的返回内容就可以了

3、注册接口

究竟的近义词是什么

一开始我都不知道register的接口到底是藏在哪

然后看routes/api.php里的

route::post('register', 'auth\registercontroller@register');

这里register接口指向的是registercontroller中的 register方法

但是在registercontroller没有找到register方法,只有registered、validator、create这几个方法

真正的register方法在第一句的

u registersurs;registersurs的registerpublic function register(request $request){    $this->validator($request->all())->validate();    event(new registered($ur = $this->create成长故事作文($request->all())));    $this->guard()->login($ur);    return $this->registered($request, $ur)            ?: redirect($this->redirectpath());}

这里用到了registercontroller 中的registered、validator、crea关于感恩的手抄报te这几个方法

成功的情况下,修改数据返回格式比较简单

直接在registercontroller中的registered()方法中修改

protected function registered(request $request,$ur){  $ur->generatetoken();  $ret=new retobject();  $ret->retcode="0000";  $ret->retmsg='register success';  $ret->data= $ur->toarray();  return respon()->json($ret);}

然后在哪里捕捉异常然后失败的时候修改数据返回格式,捣鼓了好久。

一开始尝试直接在registercontroller中的registered()方法中使用try/catch捕捉异常信息,但是每次debug都不会跳进来,直接在更底层验证的时候就直接输出报错信息了。

try{  $ur->ge地图上旅行neratetoken();  $ret=new retobject();  $ret->retcode="0000";  $ret->retmsg='register success';  $ret->data= $ur->toarray();  return respon()->json($ret);}catch (exception $exception){  $ret=new retobject();  $ret->retcode="0001";  $ret->retmsg='register failed';  $ret->data= null;  return respon()->json($ret);}

最终在app/exception/handler.php

report方法是用来将异常写入日志,render是用来渲染各种异常的浏览器输出

所以我们应该是在render中修改捕捉到异常之后返回数据的格式

public function render($request, exception $exception){    // this will replace our 404 respon with    // a json respon.    if ($exception instanceof modelnotfoundexception &&      $request->wantsjson())    {      $ret=new retobject();      $ret->retcode="404";      $ret->retmsg='页面未找到';      $ret->data= null;      return respon()->json($ret);    }elif ($exception instanceof validationexception)    {      $ret=new retobject();      $ret->retcode="0001";      $ret->retmsg=$exception->getmessage();      $ret->data= null;      return respon()->json($ret);    }    return parent::render($request, $exception);}

然后起码是可以自定义捕捉到验证数据异常validationexception 时候的返回数据格式了,还有其他的异常也是可以直接在handler.phprender方法中添加。

补充一下handler的异常处理的控制器基类:目录为vendor/laravel/framework/src/illuminate/foundation/exception/handler.php

中的report和render方法

public function report(exception $e){    if ($this->shouldntreport($e)) {      return;    }    try {      $logger = $this->container->make(loggerinterface::class);    } catch (exception $ex) {      throw $e; // throw the original exception    }    $logger->error($e);}public function render($request, exception $e){    $e = $this->prepareexception($e);    if ($e instanceof httpresponexception) {      return $e->getrespon();    } elif ($e instanceof authenticationexception) {      return $this->unauthenticated($request, $e);    } elif ($e instanceof validationexception) {      return $this->convertvalidationexceptiontorespon($e, $request);    }    return $this->preparerespon($request, $e);}

更多关于laravel相关内容感兴趣的读者可查看本站专题:《laravel框架入门与进阶教程》、《php优秀开发框架总结》、《php面向对象程序设计入门教程》、《php+mysql数据库操作入门教程》及《php常见数据库操作技巧汇总》

希望本文所述对大家基于laravel框架的php程序设计有所帮助。

本文发布于:2023-04-06 10:21:33,感谢您对本站的认可!

本文链接:https://www.wtabcd.cn/fanwen/zuowen/e4190af5b5108da61c31a60f12d2af51.html

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。

本文word下载地址:Laravel框架实现修改登录和注册接口数据返回格式的方法.doc

本文 PDF 下载地址:Laravel框架实现修改登录和注册接口数据返回格式的方法.pdf

标签:方法   接口   异常   数据
相关文章
留言与评论(共有 0 条评论)
   
验证码:
Copyright ©2019-2022 Comsenz Inc.Powered by © 专利检索| 网站地图