0

我有一个看起来像这样的应用程序:

在此处输入图像描述

如您所见,每一行包含一个组标题(只有一个输入的行)或一个成分表单(有一个小输入,然后是一个选择,然后是另一个更大的输入)。

我使用 Javascript 添加新的跨度。我使用以下 PHP 将每个成分跨度分组到一个数组中,确定顺序(因为每个跨度可以移动到不同的顺序),然​​后插入到我的数据库中。

foreach($_POST as $key => $value) {
        $value = $this->input->post($key);
        $ingredientQTY = $this->input->post('ingredientQTY');
        $measurements = $this->input->post('measurements');
        $ingredientNAME = $this->input->post('ingredientNAME');
        $ingredientsROW[] = array($ingredientQTY, $measurements, $ingredientNAME);
      
        for ($i = 0, $count = count($ingredientQTY); $i < $count; $i++) {
            $rows[] = array(
                'ingredientamount'      => $ingredientQTY[$i],
                'ingredientType'        =>  $measurements[$i],
                'ingredientname'        => $ingredientNAME[$i],
                'recipe_id'             => $recipe_id,
                'order'                 => $i + 1,
                'user_id'               => $user_id
            );
            $sql = "INSERT `ingredients` (`ingredientamount`,`ingredientType`,`ingredientname`, `recipe_id`, `order`, `user_id`) VALUES ";
            $coma = '';
            foreach ($rows as $oneRow) {
                $sql .= $coma."('".implode("','",$oneRow)."')";
                $coma = ', ';
            }
            
        }
        $this->db->query($sql);
        break;
}

这为插入成分行创造了奇迹。但我不确定如何插入组标题(必须将其放在 for 循环中以保持顺序,$i + 1,继续)。

我想我已经找到了两种解决方案(尽管可能还有其他解决方案,这些甚至可能不起作用):

  1. 组标题输入字段是否与成分文本字段之一具有相同的名称值,并随其发送隐藏值,称其为组标题?

  2. 将其作为具有不同名称值的不同输入字段发送?

我的问题是:我怎样才能用我当前的代码做到这一点,这些是有效的解决方案,还是有更好的解决方案?

感谢大家的帮助!如果您需要更多详细信息,请询问!

4

1 回答 1

1

您可以使用空标题<input type="hidden" name="groupheading[]" value="product" />,如<input type="text" name="groupheading[]" value="" />. 第一个应该在产品范围内。

这样,您可以按照现在的方式继续循环。$_POST['groupheading'][$key] 要么返回组标题,要么返回短语“产品”。因此,在您的脚本中,它将是:

if($_POST['groupheading'][$key] == "product") {
  // insert product
} else {
  // insert group heading
}

我想我今天早上或昨天为您提供了答案。您用来获得所需效果的方式仍然有点奇怪。它可以更容易地实现。

于 2013-03-27T23:47:41.517 回答