我使用两种方法来测试我的表单:
通过使用$form = …->form();
然后设置$form
数组的值(更准确地说,这是一个\Symfony\Component\DomCrawler\Form
对象):
文档中的完整示例:
$form = $crawler->selectButton('submit')->form();
// set some values
$form['name'] = 'Lucas';
$form['form_name[subject]'] = 'Hey there!';
// submit the form
$crawler = $client->submit($form);
通过直接发送POST
数据:
前面的代码不适用于管理集合的表单(依赖于 Javascript 创建的字段),因为如果该字段不存在,它会引发错误。这就是为什么我也使用这种其他方式。
文档中的完整示例:
// Directly submit a form (but using the Crawler is easier!)
$client->request('POST', '/submit', array('name' => 'Fabien'));
这个解决方案是我知道的唯一方法来测试管理带有由 Javascript 添加的字段的集合的表单(请参阅上面的文档链接)。但是第二种解决方案更难使用,因为:
- 它不检查存在哪些字段,当我必须提交包含现有字段的表单时,这是不切实际
and
的 - 它需要
_token
手动添加表单
我的问题
是否可以使用第一种方法的语法来定义现有字段,然后使用第二种语法添加新的动态创建的字段?
换句话说,我想要这样的东西:
$form = $crawler->selectButton('submit')->form();
// set some values for the existing fields
$form['name'] = 'Lucas';
$form['form_name[subject]'] = 'Hey there!';
// submit the form with additional data
$crawler = $client->submit($form, array('name' => 'Fabien'));
但我得到这个错误:
无法访问的字段“名称”
并$form->get('name')->setData('Fabien');
触发相同的错误。
这个例子并不完美,因为表单没有集合,但足以向您展示我的问题。
当我向现有表单添加一些字段时,我正在寻找一种避免这种验证的方法。