Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Route::post('/save', function() { $key = Input::get('key'); echo $key ; });
嗨,我已经定义了上述路线,我正在尝试向POST它提出请求。我发送的数据存储在其中,key但我没有在路由中获得任何值。
POST
key
这是检索POST请求值的正确方法吗?
我通常会通过$_POST['key']使用 PHP 来检索它们。
$_POST['key']
这是一个屏幕截图:
你做对了。但是,您需要从/save.
/save
因此,您的结果路线将如下所示:
Route::post('save', function() { $key = Input::get('key'); echo $key ; });