다음 laravel 튜토리얼 칼럼에서는 Laravel에서 URL 패턴을 생성하는 세 가지 방법을 소개하겠습니다. 도움이 필요한 친구들에게 도움이 되길 바랍니다!
Laravel은 URL 패턴을 생성합니다.
1. URL 보조 기능을 통해
location.href = "{{url('main/index')}}"; location.href = "{{url::to('main/index')}}";
location.href = "{{route('main/index')}}"; location.href = "{{URL::route('main/index')}}";
location.href = "{{action('UserController@index',['id'=>1,'author'=>'admin'])}}"; location.href = "{{URL::action('UserController@index',['id'=>1,'author'=>'admin'])}}";
rrreee
참고: 2와 3에 전달된 매개변수는 Request $request 🎜를 사용하여 컨트롤러에서 수신할 수 있습니다.위 내용은 Laravel에서 URL 패턴을 생성하는 세 가지 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!