我不知道为什么在我的表中插入值不能使用 foreach 遍历 Json 对象。当我看到表时,字段是空的。
Json 对象(来自 jquery.ajax)
[{"marca":"Cisco","producto":"UCS","subproducto":"Nexus"},"marca":"Citrix","producto":"Networking","subproducto":"Netscaler"}]
打印_r($数据)
Array
(
[0] => Array
(
[marca] => Cisco
[producto] => UCS
[subproducto] => Nexus
)
[1] => Array
(
[marca] => Citrix
[producto] => Networking
[subproducto] => Netscaler
)
)
PHP代码
$data = json_decode($this->dataNewPoliza['alcances'], true);
$marca;
$producto;
$subproducto;
$sqlAlc = "INSERT INTO t_poliza_alcanceproductos VALUES (:idp,:m,:p,:s)";
$resultAlc = $this->dbConnect->prepare($sqlAlc) or die ($sqlAlc);
foreach ($data as $key => $value) {
foreach ($value as $mps => $valuemps) {
if($mps == 'marca') {
$marca = $valuemps;
}
if($mps == 'producto') {
$producto = $valuemps;
}
if($mps == 'subproducto') {
$subproducto = $valuemps;
}
}
$resultAlc->bindValue(':idp',$id_poliza,PDO::PARAM_INT);
$resultAlc->bindValue(':m',$marca,PDO::PARAM_INT);
$resultAlc->bindValue(':p',$producto,PDO::PARAM_INT);
$resultAlc->bindValue(':s',$subproducto,PDO::PARAM_INT);
if(!$resultAlc->execute()) {
return false;
} else {
return true;
}
}
希望能得到一些帮助。
解决了
问题是我不能在 foreach 中返回 false 或 true ,正如@zerkms 所说,我不需要嵌套循环,这是最终结果:
$data = json_decode($this->dataNewPoliza['alcances'], true);
$sqlAlc = "INSERT INTO t_poliza_alcanceproductos VALUES (:idp,:m,:p,:s)";
$resultAlc = $this->dbConnect->prepare($sqlAlc) or die ($sqlAlc);
foreach ($data as $key => $value) {
$resultAlc->bindValue(':idp',$id_poliza,PDO::PARAM_INT);
$resultAlc->bindValue(':m',$value['marca'],PDO::PARAM_INT);
$resultAlc->bindValue(':p',$value['producto'],PDO::PARAM_INT);
$resultAlc->bindValue(':s',$value['subproducto'],PDO::PARAM_INT);
$resultAlc->execute();
}
return true;
感谢您的帮助!