0

我已经找到了这个表单所需的大部分内容(使字段动态化等),但是现在这个数组部分似乎无法正确提交。

我想要完成的事情:一个带有选择字段的表单,可以动态复制,然后作为表单的一部分提交到它自己的表中。因此,如果我们在一个表单中添加并选择三个人,它会将外键提交给它自己的出席表,并返回表单所针对的事件。必须让它充满活力,因为我们永远无法确定有多少人会参加所说的活动,但它必须以一种形式发生。只是因为它确实如此。我的老板是这样说的。

这是我添加另一个字段按钮的javascript:

    $(document).ready(function() {
        $('#btnAdd').click(function() {
            var num     = $('.clonedInput').length; // how many "duplicatable" input fields we currently have
            var newNum  = new Number(num + 1);      // the numeric ID of the new input field being added

            // create the new element via clone(), and manipulate it's ID using newNum value
            var newElem = $('#input' + num).clone().attr('id', 'input' + newNum);

            // manipulate the id value of the input inside the new element
            newElem.children(':first').attr('id', 'attendee' + newNum).attr('name', 'attendee[' + newNum + ']');

            // insert the new element after the last "duplicatable" input field
            $('#input' + num).after(newElem);

            // enable the "remove" button
            $('#btnDel').attr('disabled','');

            // business rule: you can only add 5 names
            if (newNum == 6)
                $('#btnAdd').attr('disabled','disabled');
        });

以下是该字段以以下形式开始的内容:

    <div id="input1" style="margin-bottom:4px;" class="clonedInput">
    <select name="attendee[1]" id="attendee1" style='float:right;margin-right:4.5%;'>
    <option value=''>Please choose one...</option>
    <?php
    while($row_attendees = mysql_fetch_assoc($res_attendees)){
        $attendee_id = $row_attendees['attendee_id'];
        $attendee_name = $row_attendees['name'];

        echo "<option value='".$attendee_id."'>".$attendee_name."     </option>";
    }
    ?>
    </select><label style='width:100px;display:inline-block;line-height:28px;' for="attendee">Attendee</label>
    </div>

我正在正确更改所有内容。所有选择输入都被正确识别和命名。div 正在更新相同。所有这些都正常工作。什么不是我去提交的时候。这是我的php:

    foreach($_POST['attendee'] as $attendee){
    $sql_attendees = "INSERT into marketing_calendar.attending (event_title, attendee_id) VALUES ('".$_POST['title']."','".$attendee."')";  
    $res_attendees = mysql_query($sql_attendees) or die(mysql_error());
}

我用来把它放在一起的所有教程都表明这是正确的。但是它不起作用。我只得到第一个下拉列表的内容,没有其他内容填充到数组中。如果我运行表单或在 foreach 语句中回显参加者变量,至少这就是它显示/提交的全部内容。请帮忙!:)

提前致谢。

更新 我已经尝试过与另一个用户讨论的几种方法来显示 $_POST['attendee'] 的数组,但是它仍然只显示数组中的 1 个 id,而不是我实际添加的许多字段。我还尝试从选择的名称属性中的数组中删除数字。所以它只是 name='attendee[]' 而不是 name='attendee[1]' 等等。这也无济于事。有人可以帮忙解释为什么我的动态添加的字段没有被添加到数组中吗?

4

2 回答 2

1

我将您的代码放入 JSfiddle,这里:http: //jsfiddle.net/rv8Mv/1/

看起来选择正在正确添加。您可以通过单击“提交”按钮进行检查,该按钮显示将提交给服务器的数据字符串。

您可能要检查的一件事是确保将所有选择元素都包含在一个<form>元素中,而这些元素未包含在您的问题中。

我认为您的问题出在服务器上的 PHP 代码中。

在服务器上,确保您使用以下代码接收所有变量:

<?php
    foreach($_POST as $key => $value){
        error_log($key.' -> '.$value;
    }
?>

然后检查您的错误日志以查看所有 POST 变量的名称和值。

您可能没有在当前 PHP 代码中正确引用 POST 变量。

于 2013-01-02T15:44:48.540 回答
1

您应该将 sql 更改为如下所示:

foreach($_POST['attendee'] as $attendee){
    $sql_attendees = "INSERT into marketing_calendar.attending (event_title, attendee_id) VALUES ('".$_POST['title']."',".$attendee.")";  
    $res_attendees = mysql_query($sql_attendees) or die(mysql_error());
}

attendee_id是一个 int 列。您用单引号将列内容括起来,这表示一个字符串。如果您的列被定义为可为空,这将导致您attendee_id为空。

于 2013-01-02T16:14:16.560 回答