使用数据库

时间:2015-11-23 09:44:15

标签: javascript php postgresql variables selection

我有一个功能,可以使用ID =“maTable”

的表格中的按钮添加新选择
<button type="button" onclick ="addNew()"> Add More Agent</button>

使用JS:

 function Addnew(){
 var table=document.getElementById("maTable");
 var row=table.insertRow([table.rows.length]-1);
 var len=(table.rows.length);
 var newid="agentID"+len;
 var newida="agentGroup"+len;

 var cell1=row.insertCell;
 var cell2=row.insertCell;
 var cell3=row.insertCell;

 var new_optionAgent =
 "<select class=\"opsi\"id="'+newida+'">"
 +"<option selected=\"selected\"disabled=\"disabled\">Agent<\/option>"
 +"<option value=\"agentA\">Agent A<\/option>"
 +"<option value=\"agentB\">Agent B<\/option>"
 +"<option value=\"agentC\">Agent C<\/option>"
 +"<option value=\"agentD\">Agent D<\/option>"
 +"<\/select>"

cell1.innerHTML="Choose Agent" +" "+len;
cell2.innerHTML=":";
cell3.innerHTML= new_optionAgent;
}

有了这个,我可以得到一个按钮,它将生成一个带有4个选项的新选择(它可以工作)。但是,当我想用​​数据库中的列表更改选项时,现在出现了问题。我使用PHP和postgres数据库。我为那个尚未从“AddNew”按钮生成的代码制作了代码:

<?php
        $que=pg_query("SELECT agentname FROM Agent");

        echo "<select name=\"agentname1\"class=\"opsi\" id=\"agentGroup1\" required>";
        echo "<option value=\"\" selected=\"selected\"disabled='disabled'>Agent</option>";
        While($row=pg_fetch_array($que))
        {
            echo '<option value="'.$row['agentname'].'"> '.$row['agentname'].'</option>';
        }
        echo "</select>";
    ?>

现在我想制作一个“AddNew”按钮,用于从数据库中生成带有选项列表的选项。我通过在某些符号中添加“\”将php代码与变量“new_optionAgent”结合起来。但它不起作用。

我像这样结合

    var new_optionAgent =
'<\?php
\$que=pg_query(\"SELECT agentname FROM Agent\")\;

echo \'<select name=\\\"agentname1\\\"class=\\\"opsi\\\" id=\\\"agentGroup1\\\" required>\'\;
echo \'<option value=\\\"\\\" selected=\\\"selected\\\"disabled=\\\'disabled\\\'>Agent</option>\'\;
While(\$row=pg_fetch_array(\$que))
{
    echo \'<option value=\"\'\.$row[\'agentname\']\.\'\"> \'\.$row[\'agentname\']\.\'</option>\'\;
}
echo \"<\/select>\"\;
\?>'

这种组合似乎非常错误,有什么帮助吗?谢谢

1 个答案:

答案 0 :(得分:1)

这不起作用,因为PHP使用转义的反斜杠来转义双引号。因此,您需要添加另一组backslases并将其转义,或者在PHP中使用单引号字符串:

<?php
    $que=pg_query("SELECT agentname FROM Agent");

    echo '<select name=\"agentname1\"class=\"opsi\" id=\"agentGroup1\" required>';
    echo '<option value=\"\" selected=\"selected\"disabled=\'disabled\'>Agent</option>';
    While($row=pg_fetch_array($que))
    {
        echo '<option value="'.$row['agentname'].'"> '.$row['agentname'].'</option>';
    }
    echo "</select>";
?>

修改

你不能在这样的Javascript变量中内嵌PHP。试试这个:

<?php
    $que=pg_query("SELECT agentname FROM Agent");

    $whateverYouWannaCallThisString = '';

    $whateverYouWannaCallThisString .= '<select name=\"agentname1\"class=\"opsi\" id=\"agentGroup1\" required>';
    $whateverYouWannaCallThisString .= '<option value=\"\" selected=\"selected\"disabled=\'disabled\'>Agent</option>';
    While($row=pg_fetch_array($que))
    {
        $whateverYouWannaCallThisString .= '<option value="'.$row['agentname'].'"> '.$row['agentname'].'</option>';
    }
    $whateverYouWannaCallThisString .= "</select>";
?>

<script type="text/javascript">
    var new_optionAgent = "<?php echo $whateverYouWannaCallThisString; ?>";
</script>

有关逃避的更多信息

您转义字符的全部原因是因为您使用的是围绕字符串本身的字符。例如:如果您要定义一个双引号"的字符串,请执行以下操作var myString = "Yolo",并且您希望在该字符串中使用双引号",如下所示:var myString = "Dude, wheres "my" car"那么您需要要转义该字符串中的双引号",如下所示:var myString = "Dude, wheres \"my\" car"

同样适用于PHP

//编辑: 我编辑了变量:

 var new_optionAgent =
 <?php echo json_encode($whateverYouWannaCallThisString); ?>;

它有效:)