我正在处理这个项目,我需要将一个数组作为 URL 参数传递,我实际上设法使用 javascript 来完成它。
function guardarTodo()
{
var datos = [];
var txtfechaCap = document.getElementById("txtfechaCap").value;
datos.push(txtfechaCap);
var cbxLocalidad = document.getElementById("cbxLocalidad").value;
datos.push(cbxLocalidad);
var txtapellidoP = document.getElementById("txtapellidoP").value;
datos.push(txtapellidoP);
var txtapellidoM = document.getElementById("txtapellidoM").value;
datos.push(txtapellidoM);
var txtNombres = document.getElementById("txtNombres").value;
datos.push(txtNombres);
var txtCurp = document.getElementById("txtCurp").value;
datos.push(txtCurp);
var chkSexo;
if(document.getElementById("chkHombre").checked)
chkSexo = 'H';
else
chkSexo = 'M';
datos.push(chkSexo);
var txtfecha = document.getElementById("txtfecha").value;
datos.push(txtfecha);
var txtEdad = document.getElementById("txtEdad").value;
datos.push(txtEdad);
var txtPeso = document.getElementById("txtPeso").value;
datos.push(txtPeso);
var txtTalla = document.getElementById("txtTalla").value;
datos.push(txtTalla);
var txtCC = document.getElementById("txtCC").value;
datos.push(txtCC);
for (var i=0;i<document.getElementById('table_depProg').rows.length;i++)
{
var prog = [];
for (var j=0;j<1;j++)
{
var programa = document.getElementById('table_depProg').rows[i].cells[j].innerHTML;
alert(programa);
prog.push(programa);
}
window.location.href = "funciones/guardar.php?prog="+prog+"&datos[]="+datos;
}
}
现在的问题是,当我尝试使用 GET 方法获取数组时,我无法一一获取索引。
<?php
include("funciones.php");
//Persona
print_r($_GET['datos']);
@$fechacaptura = $_GET['datos']['txtfechaCap'];
@$idlocalidad = $_GET['datos']['cbxLocalidad'];
@$apaterno = $_GET['datos']['txtapellidoP'];
@$amaterno = $_GET['datos']['txtapellidoM'];
@$nombre = $_GET['datos']['txtNombres'];
@$curp = $_GET['datos']['txtCurp'];
@$sexo = $_GET['datos']['chkSexo'];
@$fechanacimiento = $_GET['datos']['txtfecha'];
@$edad = $_GET['datos']['txtEdad'];
@$peso = $_GET['datos']['txtPeso'];
@$talla = $_GET['datos']['txtTalla'];
@$cc = $_GET['datos']['txtCC'];
$sql = "CALL personasAdd($idlocalidad,'$fechacaptura','$apaterno','$amaterno','$nombre','$curp','$sexo', '$fechanacimiento',$edad,$peso,$talla,$cc);";
@$idpersona = personasAdd($sql);
?>
如您所见,我打印了数组以检查它是如何工作的,但这是输出:
Array ( [0] => 2013-07-03,8,LastName1,LastName2,Name(s),123456789012345678,H,2013-07-01,24,34,45,56 ).
它包含数据,但是当我打印 $sql 变量时,我得到了这个:
CALL personasAdd(,'','','','','','','',,,,);
我一整天都在工作,找不到我做错了什么,我真的很感激任何帮助或线索来找到我的错误。