Route::post('user/profile',function(){// Validate the request...returnback()->withInput();}); Redirecting To Named Routes# When you call theredirecthelper with no parameters, an instance ofIlluminate\Routing\Redirectoris returned, allowing you to call any method on theRedirectorinstance. For ...
long0111 声望
为了实现POST方法的路由回退,可以使用back()辅助函数或RedirectResponse类来生成重定向响应。下面是一个示例: 代码语言:txt 复制 // 在路由文件中定义POST路由 Route::post('/form-submit', 'FormController@submit'); // 在FormController控制器的submit方法中处理表单提交 public function submit(Request $request) ...
可以使用Redirect类的to()方法指定重定向的URL。例如,return Redirect::to('/dashboard')将用户重定向到名为"dashboard"的路由。 使用路由重定向:在Laravel中,可以使用路由重定向来捕获返回重定向。可以在路由定义中使用Route::redirect()方法来指定重定向的URL。例如,Route::redirect('/home', '/dashboard')将...
$url=$request->fullUrl(); 获取请求方法 对于传入的请求method方法将返回 HTTP 的请求方式。你也可以使用isMethod方法去验证 HTTP 的请求方式与指定规则是否相配: $method=$request->method(); if($request->isMethod('post')){ // } PSR-7 请求 ...
returnRedirect::to('home'); } }); 如果从路由过滤器中返回了一个response,那么该response将被认为对应的是此次request,路由将不会被执行,并且,此路由中所有定义在此过滤器之后的代码也都不会被执行。 为路由绑定过滤器 Route::get('user',array('before'=>'old',function() ...
returnRedirect::to('new/request')->withInput(Input::only('foo')); returnRedirect::to('new/request')->withInput(Input::except('foo')); 上传文件 上传文件表单 <!-- app/views/form.blade.php --> 获取上传文件Input::file('book') Route::get('/',function...
1 2 3 4 5 6 publicfunctionred_search() { $url=Request::all(); redirect('search/'.$url['category'].'/'.$url['term']); }
*/ public function store(Request $request): RedirectResponse { $validated = $request->validate([ 'title' => 'required|unique:posts|max:255', 'body' => 'required', ]); // The blog post is valid... return redirect('/posts'); }As...
Route::post('user/profile', function () { // Validate the request... return back()->withInput(); });Redirecting To Named RoutesWhen you call the redirect helper with no parameters, an instance of Illuminate\Routing\Redirector is returned, allowing you to call any method on the Redirector...