Home Backend Development PHP Tutorial Restful api error prompt return value implementation ideas in PHP restful api example restful interface jersey restful

Restful api error prompt return value implementation ideas in PHP restful api example restful interface jersey restful

Jul 29, 2016 am 08:53 AM
restful

RESTful architecture is a popular Internet software architecture. It has a clear structure, conforms to standards, is easy to understand, and is easy to expand.

REST is the abbreviation of Representational State Transfer, which translates as "presentation layer state transformation". The presentation layer is actually a resource, so it can be understood as "resource status transformation".

Any entity on the web application can be regarded as a resource, pointed to by a URI (Uniform Resource Locator).

Preface

Whether it is Weibo or Taobao, they have their own error return value format specifications and error code descriptions, which are not only convenient to use on mobile phones, but also give people a clear and high-level feeling. When we encounter problems, we should first go to the parent company. The norms of large companies are the mother parent for us to refer to. To this end, I imitated Taobao's error return value format, customized my own error code based on the standards set by Weibo error codes, and then tested it on the Restful api. Below I will share with you the implementation ideas and test results.

Implementation idea

I use the abstract factory pattern to implement such an error return value. I chose this pattern because it provides an interface for creating a series of related or interdependent objects, which is very close to my needs.

Code Analysis

1. According to this path commonhint, I created a new error folder to store my error prompt program files. This folder mainly contains these files:

2. Hint.php entry file. Define an abstract class and write only one method in it.

interface Hint {
function Error($_errors,$code);
}
Copy after login

3. Template.php implements the Hint interface. The format of the error return value is defined here.

class Template implements Hint{
function Error($_errors,$code) { 
if (empty($_errors)) {
print_r(json_encode([]));
} else { 
$errors['error']['name'] = 'Not Found';
$errors['error']['message'] = $_errors;
$errors['error']['error_code'] = $code; 
print_r(json_encode($errors));
}
}
}
Copy after login

4. createMsg.php Create another createMsg abstract class. Abstract object creation into an interface.

interface createMsg { 
function Msg(); 
}
Copy after login

5. Use FactoryMsg class to implement the createMsg interface. Returns the instantiated Template.

class FactoryMsg implements createMsg{
function Msg() {
return new Template;
}
}
Copy after login

6. ErrorMsg.php passes parameters to the Error method in Template.

class ErrorMsg {
// 抽象工厂里的静态方法
public static function Info($_errors) { 
$Factory = new FactoryMsg;
$result = strstr($_errors,Yii::t('yii','Not exist')); //数据不存在 20001
$result1 = strstr($_errors,Yii::t('yii','Null')); //参数不能为空 20002
$result2 = strstr($_errors,Yii::t('yii','Fail')); //新增、更新、删除失败 20003
$result3 = strstr($_errors,Yii::t('yii','Not right')); //XX不正确 20004
$result4 = strstr($_errors,Yii::t('yii','Robc')); //XX无权限 20005
//数据不存在 20001
if(!empty($result)){ 
$M = $Factory->Msg();
$M->Error($_errors,'20001');die;
}
//参数不能为空 20002
if(!empty($result1)){ 
$M = $Factory->Msg();
$M->Error($_errors,'20002');die;
}
//新增、更新、删除失败 20003
if(!empty($result2)){ 
$M = $Factory->Msg();
$M->Error($_errors,'20003');die;
}
//XX不正确 20004
if(!empty($result3)){ 
$M = $Factory->Msg();
$M->Error($_errors,'20004');die;
}
//XX无权限 20005
if(!empty($result4)){ 
$M = $Factory->Msg();
$M->Error($_errors,'20005');die;
}
//默认类型 21000
$M = $Factory->Msg();
$M->Error($_errors,'21000');
}
}
Copy after login

7. Calling method.

use common\hint\error\ErrorMsg;
ErrorMsg::Info(Yii::t('yii','failure'));
Copy after login

8. Test results.

{
"error": {
"name": "Not Found",
"message": "操作失败",
"error_code": "20003"
}
}
Copy after login

Done. I use the form of language packs for the entire implementation process, which will facilitate multi-language switching in the future.

FAQ

1. Using this kind of string fuzzy search is very general and cannot meet the requirements of returning specific codes corresponding to specific error types. If you have better suggestions, everyone is welcome.

$result = strstr($_errors,Yii::t('yii','Not exist'));
Copy after login

2. During the implementation process, the problem of multi-language switching in the future was not considered, and the prompts were directly transmitted in the traditional way. For example: ErrorMsg::Info("Operation failed"); In this way, multi-language switching cannot be achieved. It is recommended that you use language packs to pass parameters.

The above introduces the idea of ​​implementing the error prompt return value of Restful api in PHP, including restful content. I hope it will be helpful to friends who are interested in PHP tutorials.

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

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Flask-RESTful and Swagger: Best practices for building RESTful APIs in Python web applications (Part 2) Flask-RESTful and Swagger: Best practices for building RESTful APIs in Python web applications (Part 2) Jun 17, 2023 am 10:39 AM

Flask-RESTful and Swagger: Best Practices for Building RESTful APIs in Python Web Applications (Part 2) In the previous article, we explored the best practices for building RESTful APIs using Flask-RESTful and Swagger. We introduced the basics of the Flask-RESTful framework and showed how to use Swagger to build documentation for a RESTful API. Book

RESTful API development with Laravel: Building modern web services RESTful API development with Laravel: Building modern web services Aug 13, 2023 pm 01:00 PM

RESTful API Development with Laravel: Building Modern Web Services With the rapid development of the Internet, the demand for Web services is increasing day by day. As a modern Web service architecture, RESTfulAPI is lightweight, flexible, and easy to expand, so it has been widely used in Web development. In this article, we will introduce how to use the Laravel framework to build a modern RESTful API. Laravel is a PHP language

Building a RESTful API using Django Building a RESTful API using Django Jun 17, 2023 pm 09:29 PM

Django is a web framework that makes it easy to build RESTful APIs. RESTfulAPI is a web-based architecture that can be accessed through HTTP protocol. In this article, we will introduce how to use Django to build RESTful APIs, including how to use the DjangoREST framework to simplify the development process. Install Django First, we need to install Django locally. You can use pip to install Django, specifically

How to use Python Flask RESTful How to use Python Flask RESTful Apr 29, 2023 pm 07:49 PM

1. Overview of RESTful REST (RepresentationalStateTransfer) style is a resource-oriented Web application design style that follows some design principles to make Web applications have good readability, scalability, and maintainability. Let's explain each aspect of the RESTful style in detail: Resource identifier: In the RESTful style, each resource has a unique identifier, usually a URL (UniformResourceLocator). URLs are used to identify the location of resources so that clients can access them using the HTTP protocol. For example, a simple URL could be: http

Steps to build a RESTful API using PHP Steps to build a RESTful API using PHP Jun 17, 2023 pm 01:01 PM

With the development and popularity of the Internet, web applications and mobile applications are becoming more and more common. These applications need to communicate with the backend server and get or submit data. In the past, the conventional way to communicate was to use SOAP (Simple Object Access Protocol) or XML-RPC (XML Remote Procedure Call). Over time, however, these protocols were deemed too cumbersome and complex. Modern applications require more lightweight and straightforward APIs to communicate. RESTfulAPI (presentation layer state conversion AP

Best practices for developing RESTful services with Beego Best practices for developing RESTful services with Beego Jun 23, 2023 am 11:04 AM

In the current environment of continuous innovation in information technology, RESTful architecture is popular in various commonly used WebAPI applications and has become an emerging service development trend. The Beego framework, as a high-performance and easily scalable Web framework in Golang, is widely used in the development of RESTful services due to its advantages of efficiency, ease of use, and flexibility. The following will provide some reference for developers from the perspective of best practices for developing RESTful services in Beego. 1. Routing design in REST

RESTful API design and implementation method RESTful API design and implementation method Jun 22, 2023 pm 04:07 PM

RESTfulAPI is a commonly used API design style in the current Web architecture. Its design concept is based on the standard method of the HTTP protocol to complete the representation and interaction of Web resources. During the implementation process, RESTful API follows a series of rules and constraints, including cacheability, server-client separation, statelessness, etc. These rules ensure the maintainability, scalability, security and ease of use of the API. Next, this article will introduce in detail the design and implementation of RESTfulAPI

How to develop a RESTful-based API using Java How to develop a RESTful-based API using Java Sep 21, 2023 pm 03:53 PM

How to use Java to develop a RESTful-based API. RESTful is an architectural style based on the HTTP protocol. It uses the GET, POST, PUT, DELETE and other methods of the HTTP protocol to operate resources. In Java development, some frameworks can be used to simplify the development process of RESTful API, such as SpringMVC, Jersey, etc. This article will introduce you in detail how to use Java to develop a RESTful-based

See all articles