Laravel - Ajax

Laravel - Ajax

Step 1: Create the View File

First, create a view file where you will write the HTML and include jQuery for Ajax operations.

resources/views/message.php:

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Ajax Example</title> <script src="https://code.jquery.com/jquery-3.6.0.min.js"></script> </head> <body> <h1>Welcome to Ajax Example</h1> <button id="btnGetMsg">Get Message</button> <p id="msg"></p> <script type="text/javascript"> $(document).ready(function() { $('#btnGetMsg').click(function() { // Send an Ajax POST request $.ajax({ url: '/getmsg', // The route we defined in the controller type: 'POST', dataType: 'json', success: function(response) { $('#msg').text(response.msg); // Display the response in the paragraph }, error: function(xhr, status, error) { console.log(xhr.responseText); // Handle errors } }); }); }); </script> </body> </html>

In the code above:

  • A button with the id btnGetMsg triggers the Ajax request.

  • The success callback receives the response in JSON format and displays the message in the #msg element.

Step 2: Create the Controller

Run the following command in your terminal to create the controller:

php artisan make:controller AjaxController --plain

This will create a new controller at app/Http/Controllers/AjaxController.php.

Step 3: Implement Controller Logic

Now, open app/Http/Controllers/AjaxController.php and add the following code to handle the Ajax request.

namespace App\Http\Controllers; use Illuminate\Http\Request; class AjaxController extends Controller { public function index() { $msg = "This is an Ajax simple message."; // The message to send to the client return response()->json(['msg' => $msg], 200); // Return the message in JSON format } }

This controller method will return a simple message in JSON format when the client sends a request.

Step 4: Define Routes

Next, define the routes in routes/web.php.

use Illuminate\Support\Facades\Route; Route::get('ajax', function() { return view('message'); // This will load the 'message' view }); Route::post('/getmsg', [App\Http\Controllers\AjaxController::class, 'index']); // Handle the POST request
  • The Route::get('ajax') route loads the view where the Ajax functionality is implemented.

  • The Route::post('/getmsg') route listens for the POST request and invokes the index method of AjaxController.

Step 5: Test the Application

  1. Run your Laravel application:

    php artisan serve
  2. Visit http://localhost:8000/ajax in your browser. You should see the page with the "Get Message" button.

Step 6: Click the Button

Click the "Get Message" button, and it will trigger an Ajax request to the /getmsg route, which will return the JSON message. The message will then be displayed in the <p id="msg"></p> element.

Summary:

  • View (message.php): Contains the HTML and jQuery code for the Ajax request.

  • Controller (AjaxController.php): Handles the POST request and returns a JSON response.

  • Routes (web.php): Defines the routes for the Ajax request and the view rendering.

This setup allows you to handle asynchronous requests in a Laravel application using jQuery and Ajax. Would you like further help with any of these steps or additional customization?

Soeng Souy

Soeng Souy

Website that learns and reads, PHP, Framework Laravel, How to and download Admin template sample source code free.

Post a Comment

CAN FEEDBACK
close