Home  >  Article  >  PHP Framework  >  Discuss the use and processing of various request methods in Laravel

Discuss the use and processing of various request methods in Laravel

PHPz
PHPzOriginal
2023-04-23 09:16:101927browse

Laravel is a popular PHP framework for web application development. It provides many convenient features and tools that allow developers to complete common tasks more efficiently. One of the common tasks is handling HTTP requests. Laravel supports a variety of different request methods, including GET, POST, PUT, DELETE, etc. In this article, we will explore the use and processing of various request methods in Laravel.

HTTP request and response

Before we start to introduce various request methods, let us briefly introduce the basic concepts of HTTP request and response. An HTTP request refers to a request sent by the client to the server, which includes the target URL of the request, request header information, and request body (for POST requests). After receiving the request, the server will perform corresponding processing operations and then send an HTTP response to the client. The response includes response header information, response code and response body. The response code indicates the server's processing result of the request, such as 200 indicating success, 404 indicating that the requested resource cannot be found, etc.

GET request

The GET request is a request method used to obtain data from the server. Its request parameters will be appended to the URL with a question mark (?) as the delimiter. In Laravel, we can use the Route::get() method to define a GET route. For example:

Route::get('/users', function () {
    return view('users');
});

This route will match the /users path and return a view named users. In this view, we can use some HTML tags to generate a GET request:

<form action="/users" method="get">
   <button type="submit">Get Users</button>
</form>

Here we use a form to send a GET request. The action attribute of the form indicates the target URL of the request, and the method attribute specifies the request method as GET. When the user clicks the button, the browser will send a GET request to the server and add the request parameters after the URL. For example, if we enter a parameter named "John" in the form, the requested URL will become /users?name=John. On the server side, we can use the $request object to obtain the request parameters:

Route::get('/users', function (Illuminate\Http\Request $request) {
   $name = $request->input('name');
   // 查询数据库,返回符合条件的用户列表
   $users = App\User::where('name', $name)->get();
   return view('users', ['users' => $users]);
});

This code shows how to use the $request object to obtain the request parameters. We first called the input() method to get the parameter value named "name", then used it to query the database, and finally returned a list of qualified users. This list will be passed to the previously defined users view for display.

POST request

POST request is a request method used to submit data to the server. Its request parameters will be appended to the request body and sent to the server in the form of HTTP messages. In Laravel, we can use the Route::post() method to define a POST route. For example:

Route::post('/users', function (Illuminate\Http\Request $request) {
   $name = $request->input('name');
   $email = $request->input('email');
   // 将用户数据保存到数据库
   $user = new App\User;
   $user->name = $name;
   $user->email = $email;
   $user->save();
   return redirect('/users');
});

This route will match the /users path and save the received POST request data to the database. Sending a POST request in a form is similar to sending a GET request. Just change the value of the method attribute to "post":

<form action="/users" method="post">
   @csrf
   <input type="text" name="name" placeholder="Name">
   <input type="email" name="email" placeholder="Email">
   <button type="submit">Add User</button>
</form>

Here we also added a hidden form named "_token" domain(@csrf). This hidden field is required for Laravel's CSRF protection feature, which is used to prevent cross-site request forgery attacks. On the server side, we need to use the Illuminate\Support\Facades\URL::csrfToken() method in routing to generate a CSRF token:

Route::post('/users', function () {
   return view('users');
})->middleware('web');

This middleware indicates that the request needs to be processed by the web middleware, web The middleware automatically adds the CSRF token for every request.

PUT and DELETE requests

PUT and DELETE requests are used to update and delete server-side resources. They are used and processed in a similar way to GET and POST requests. In Laravel, we can use Route::put() and Route::delete() methods to define PUT and DELETE routes. For example:

Route::put('/users/{id}', function (Illuminate\Http\Request $request, $id) {
   $user = App\User::findOrFail($id);
   $user->name = $request->input('name');
   $user->email = $request->input('email');
   $user->save();
   return redirect('/users');
});

Route::delete('/users/{id}', function ($id) {
   $user = App\User::findOrFail($id);
   $user->delete();
   return redirect('/users');
});

Here we define a PUT route and a DELETE route for updating and deleting user information. In the client, we can use JavaScript code to send PUT and DELETE requests:

// 发送PUT请求
fetch('/users/1', {
   method: 'PUT',
   headers: {
      'Content-Type': 'application/json'
   },
   body: JSON.stringify({
      name: 'John Smith',
      email: 'john@example.com'
   })
}).then(response => {
   if (response.ok) {
      // 成功处理响应
   } else {
      // 处理响应错误
   }
}).catch(error => {
   // 处理网络请求错误
});

// 发送DELETE请求
fetch('/users/1', {
   method: 'DELETE'
}).then(response => {
   if (response.ok) {
      // 成功处理响应
   } else {
      // 处理响应错误
   }
}).catch(error => {
   // 处理网络请求错误
});

This code shows how to use the fetch() function to send PUT and DELETE requests. When sending a PUT request, we convert the data in the request body to JSON format and specify the Content-Type as application/json in the request header. On the server side, we obtain user information and update or delete records in the database by using the findOrFail() method.

Summary

Laravel provides a variety of different HTTP request methods, which allows us to process server-side resources more conveniently. When developing web applications, we usually use multiple request methods to complete different tasks, such as obtaining data through GET requests, submitting form data through POST requests, and updating and deleting resources through PUT requests and DELETE requests. Using Laravel's routing system, we can easily define corresponding routes for different request methods, and process request data and response results on the server side.

The above is the detailed content of Discuss the use and processing of various request methods in Laravel. For more information, please follow other related articles on the PHP Chinese website!

Statement:
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