我在编写 Symfony 2 功能测试来设置作为数组一部分的复选框时遇到问题(即多个扩展选择小部件)
在文档中,示例是
$form['registration[interests]']->select(array('symfony', 'cookies'));
但它没有显示可以使用的html,也不适用于我的。这是我的表格的精简版
<form class="proxy" action="/proxy/13/update" method="post" >
<input type="checkbox" id="niwa_pictbundle_proxytype_chronologyControls_1" name="niwa_pictbundle_proxytype[chronologyControls][]" value="1" />
<input type="checkbox" id="niwa_pictbundle_proxytype_chronologyControls_2" name="niwa_pictbundle_proxytype[chronologyControls][]" value="2" />
<input type="checkbox" id="niwa_pictbundle_proxytype_chronologyControls_3" name="niwa_pictbundle_proxytype[chronologyControls][]" value="3" />
</form>
一旦它在那里工作,我将继续使用手动制作的表格
<input type="checkbox" id="13" name="proxyIDs[]" value="13">
<input type="checkbox" id="14" name="proxyIDs[]" value="14">
<input type="checkbox" id="15" name="proxyIDs[]" value="15">
我尝试过类似的东西
$form = $crawler->selectButton('Save')->form();
$form['niwa_pictbundle_proxytype[chronologyControls]']->select(array('3'));
$form['niwa_pictbundle_proxytype[chronologyControls][]']->select(array('3'));
但第一个失败的说法select
是在非对象上运行,第二个说 Unreachable field ""
。