Home  >  Article  >  Backend Development  >  Detailed graphic and text explanation of laravel's routing (router)

Detailed graphic and text explanation of laravel's routing (router)

不言
不言Original
2018-07-13 14:15:199124browse

This article mainly introduces the detailed graphic and text explanation of Laravel's routing (router), which has a certain reference value. Now I share it with everyone. Friends in need can refer to it

Detailed graphic explanation of laravel's routing (router)

Laravel basic routing:

In /routes/web.php, write a

Route::get('/hello',function(){
    return 'hello , can you hear me ?';
});

Then you can

Detailed graphic and text explanation of laravels routing (router)

postman can also see it directly in the browser

Detailed graphic and text explanation of laravels routing (router)

Original text:

Detailed graphic and text explanation of laravels routing (router)

Let’s try calling the controller first:

Route::get('/menu','Menu\MenuIndexController@index');

This is to directly get the request to send about, and call the about method of the StaticPagesController controller

Detailed graphic and text explanation of laravels routing (router)

<?php
namespace App\Http\Controllers\Menu;//修改命名空间
use App\Http\Controllers\Controller;//引用基础controller
use Illuminate\Http\Request;
class MenuIndexController extends Controller
{
    //
    public function index(){
        return view(&#39;menu/index&#39;);
    }
}

Jump to view:

Detailed graphic and text explanation of laravels routing (router)

@extends(&#39;layouts.default&#39;)
@section(&#39;content&#39;)
<h5>菜单页</h5>
@stop
@section(&#39;title&#39;,&#39;菜单页&#39;)

Browser effect:

Detailed graphic and text explanation of laravels routing (router)

Defined in routes/ The routes in the api.php file are processed by app/Providers/RoutesServiceProvider and are nested in a routing middleware group. In this routing middleware group, all routes will be automatically added with the /api prefix, so you do not need to go to Manually add each route in the routing file. You can modify the routing prefix and other routing middleware group options by editing the RouteServiceProvider class;

Detailed graphic and text explanation of laravels routing (router)

Don’t bother with this one. Changed, I don’t know what magical things will happen if the underlying things are changed;

Sometimes you need to register a route to respond to multiple HTTP request actions - this can be achieved through the match method. Alternatively, you can use the any method to register a route to respond to all HTTP request actions:

Route::match([&#39;get&#39;,&#39;post&#39;],&#39;returnReturn&#39;,&#39;Menu\MenuIndexController@returnReturn&#39;);
Route::any(&#39;returnAny&#39;,&#39;Menu\MenuIndexController@returnAny&#39;);

Route redirection:

If you need to define a redirect to another URI route, you can use Route::redirect

Route::redirect(&#39;motherfucker&#39;,&#39;menu&#39;,301);

Enter motherfucker in the browser and you will jump to the menu;

301 is a status code, the default is 301, original text:

Detailed graphic and text explanation of laravels routing (router)

Of course There is also a need to jump directly to the view layer (view), and then the rest of the data (maybe whole data) is provided by the api. Then the route that jumps directly to the view is like this:

Route::view( 'staticView','static_pages/staticView');

Note that static_pages/staticView here uses forward slashes. Backslashes will cause an error saying can not found static_pages\staticView;

The static page is located at:

Detailed graphic and text explanation of laravels routing (router)

The effect of direct browser access:

Detailed graphic and text explanation of laravels routing (router)

Of course there is another kind of cool operation, that is Route::view passes the third parameter, which is used for data rendering in the view

Route::view(&#39;staticViewData&#39;,&#39;static_pages/staticViewData&#39;,[&#39;name&#39;=>&#39;jack&#39;,&#39;like&#39;=>&#39;money&#39;]);

The array passed is naturally ['name'=>'jack','like'=>'money' ],

Usage on the page:

@extends(&#39;layouts.default&#39;)
@section(&#39;content&#39;)
<h2>this is static view data</h2>
{{$name}} likes {{$like}}
 
@stop()
@section(&#39;title&#39;,&#39;static view data&#39;)

Then the browser effect:

Detailed graphic and text explanation of laravels routing (router)

Of course you want skin, then naturally you can’t :

Route::view(&#39;staticViewData&#39;,&#39;static_pages/staticViewData&#39;,[&#39;name&#39;=>&#39;jack&#39;,&#39;like&#39;=>&#39;money&#39;,&#39;jump&#39;=>&#39;<a href="/about">&#39;]);

The source code will parse the tags as ordinary text, and add

before and after. The above is the entire content of this article. I hope it will be helpful to everyone's study. For more related content, please pay attention to the PHP Chinese website!

Recommended courses:

The latest laravel mall practical video tutorial

Comprehensive interpretation of the Laravel framework and practical video tutorial

Learn Laravel Easily-Basics

The above is the detailed content of Detailed graphic and text explanation of laravel's routing (router). 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