The laravel API interface uses Validator and cannot return specific error information that fails verification.

WBOY
Release: 2016-10-19 10:18:54
Original
1184 people have browsed it

Validator is used in the API interface to verify the form;
When there are items that pass verification;
are all returned

<code>{
  "message": "The given data failed to pass validation.",
  "status_code": 500
}</code>
Copy after login

It is impossible to return specific information that has not passed verification;
When the front-end or mobile terminal receives the returned error message;
It cannot tell the user which item does not meet the requirements;
What I want is this;

<code>{
  "message": "邮箱已经注册",
  "status_code": 500
}

{
  "message": "必须是6-16位的密码",
  "status_code": 500
}</code>
Copy after login

Dear friends, what should I do?

Dear friends, when writing interfaces with laravel;
How are the submitted form fields verified? How to return verification results?

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template