這裏是我的代碼,以保持數據的形式保存。Laravel輸入::閃光燈()如何檢索閃光燈值
Route::any('test', function(){
if (Request::isMethod('post')){
//return Redirect::back()->withInput();
return Redirect::to('test2')->withInput();
}
else {
return View::make('home');
}
});
Route::get('test2', function(){
return var_dump(Input::all()); // Getting Empty Array here.
});
我只是做了一個單一的輸入name ='email'併發布它。當重定向到另一個網頁,其不使用Redirect::to('test2')->withInput();
<form action="" method="post">
<input type="text" name="email" value="" placeholder="Your Email">
<input type="submit" value="Submit" />
</form>
我很困惑轉發的投入,如何使用Input::flash()
或Redirect::to('test2')->withInput();
你做工作,解釋我解答,謝謝。我明白你的意思。你可以用例如使用Redirect :: to() - > withInput()和Input :: flash()來修改答案。我很困惑如何返回兩個Redirect ::並且還查看:: Make在單個路由中。 –
非常感謝,很好的幫助。花了一點時間才明白,但做到了。 +1 –
很高興幫助你找到自己的答案。 – alexrussell