当我尝试对表单提交进行功能测试时,我遇到了这个问题:
测试搜索.php:
public function testFormSubmission()
{
$client = $this->createClient();
$client->request('POST', '/search', array('nome' => 'Jan'));
...
}
应用程序.php:
$app->post('/search', function (Request $request) use ($app)
{
$post_data = $request->get('form');
...
});
...但 $post_data 为 NULL。
如果我使用浏览器中的提交按钮进行提交,一切正常......