如何使用cakePHP在动态循环中通过复选框发送多个值?

时间:2015-04-12 16:46:18

标签: php cakephp checkbox

首先:是的我知道这些问题cakephp-checkbox-multiple-select-just-sends-the-value-of-last-selected-checkboxmultiple-inputs-with-same-name-through-post-in-php。但两个线程都没有回答我的问题。

我的问题: 我正在创建一个“行星路线”的视图。我现在想要创建一个表,其中列出了所有“routeplanets”,并在末尾添加了一个复选框。在表格周围有一个表格(这是我的想法)发送一个列表/数组来从路径中删除它们。

我做了几次尝试,但我的请求中没有得到正确的数据。

基本信息:该表是使用foreach - 循环

构建的
- foreach($routePlanets as $routeplanet)
  - $class = $this->Html->cycle('even', 'odd')

  %tr{:class => "#{$class}"}
    %td.col1
      = [...]
    %td.col2
      = [...]          
    %td.colremove
      = # this is the line where to create the checkbox     

首次尝试:每行的复选框

%td.remove
  = $this->Form->checkbox('id', array('value' => $routeplanet['RoutePlanet']['id'], 'hiddenField' => false))

正如我在写这篇文章时所假设的那样,这总是会给我最后一个值。例如,这是生成的HTML

// First row
<td class="remove"><input type="checkbox" name="data[Routeplanet][id]"  value="1"/></td>

// Second row
<td class="remove"><input type="checkbox" name="data[Routeplanet][id]"  value="3"/></td>

当我选择这两行时,我得到以下请求,表明只传输了最后一行(或者在最后一行被覆盖之前):

var_dump($this->request->data['Routeplanet']);
// shows 
array(1) {
  ["id"]=>
  string(1) "3"
}

访问数据时,我得到一个带有最后一个ID的“有效”结果:

$planetIds =  $this->request->data['Routeplanet']['id'];
var_dump($planetIds); 
// shows: string(1) "3"

第二次尝试:然后我读了两个SO问题之一(见上文)来使用name=id[],所以我将行改为

%td.remove
  = $this->Form->checkbox('id', array('value' => $routeplanet['RoutePlanet']['id'], 'hiddenField' => false))

这导致以下HTML

// First row
<td class="remove"><input type="checkbox" name="data[Routeplanet][id[]]"  value="1"/></td>

// Second row
<td class="remove"><input type="checkbox" name="data[Routeplanet][id[]]"  value="3"/></td>

选择两者都会产生

var_dump($this->request->data['Routeplanet']);
// shows 
array(1) {
  ["id["]=>
  string(1) "3"
}

访问数据时,我得到一个带有最后一个ID的“有效”结果:

$planetIds =  $this->request->data['Routeplanet']['id[]'];
var_dump($planetIds); 
// shows: NULL

所以我尝试了使用select multiple => checkbox选项的- $options[] = $routeplanet['RoutePlanet']['id'] = $this->Form->select('id', $options, array('multiple' => 'checkbox', 'hiddenField' => false)) 的SO问题的第二个建议(见上文):

// First row
<td class="remove">
<div class="checkbox"><input type="checkbox" name="data[Routeplanet][id][]" value="0" id="0" /><label for="0">1</label></div>
</td>

// Second row
<td class="remove">
<div class="checkbox"><input type="checkbox" name="data[Routeplanet][id][]" value="0" id="0" /><label for="0">1</label></div>
<div class="checkbox"><input type="checkbox" name="data[Routeplanet][id][]" value="1" id="1" /><label for="1">3</label></div>
</td>

但这会导致错误的HTML

$options[]

正如你在第二行中看到的a),第一行也被添加(因为$routeplanet['RoutePlanet']['id'])和b)值不是array(1) { ["id"]=> array(3) { [0]=> string(1) "0" [1]=> string(1) "0" [2]=> string(1) "1" } } - 它们仅用于标签(顺便说一下,我不想要。我可以在这里打破布局和HTML是错误的,但是让我告诉你甚至错误的请求:

- foreach($routePlanets as $routeplanet)
  - $options[] = $routeplanet['RoutePlanet']['id']

- foreach($routePlanets as $routeplanet)
  %td.remove
    = $this->Form->select('id', $options, array('multiple' => 'checkbox', 'hiddenField' => false))

然后我考虑做另一个循环来填充选项,但我已经假设所有行都有所有选项。我是对的:

<td class="remove">
<div class="checkbox"><input type="checkbox" name="data[Routeplanet][id][]" value="0" id="0" /><label for="0">1</label></div>
<div class="checkbox"><input type="checkbox" name="data[Routeplanet][id][]" value="1" id="1" /><label for="1">3</label></div>
</td>    

每行产生以下HTML:

{{1}}

所以现在我的问题是:我如何构建一个有效的表单,这使我可以选择在每一行中标记一个复选框,从而导致每个标记的行都在我在控制器中访问的已发送请求中?

提前致谢

1 个答案:

答案 0 :(得分:0)

ndm提供的链接非常有用 - 谢谢!我的错误是我只在文档中检查了“复选框”和“选择”(带有多个选项),但完全忘记了“正常”输入。

这就是我最终的表现:

形式:

- # MyModel as Helpername for easier access to the array
- $fieldname = 'MyModel.' . $i . '.id'
= $this->Form->input($fieldname, array('value' => $routeplanet['RoutePlanet']['id'], 'type' => 'checkbox', 'label' => false, 'hiddenField' => false))

控制器:

$MyModelArray = $this->request->data['MyModel'];