2

我有 3 个表,分别是子类别、产品和产品类别。

当我创建我的产品时,如果它成功,它将返回成功的product_id,然后它将捕获表单子类别列,以执行将product_id和subcategory_id插入prod_category表的下一个查询。我在单个 php 文件中进行了测试,以测试该功能是否正常工作。它可以插入,但是当我适应我的情况时,它给了我这个错误。

警告:PDOStatement::execute() [pdostatement.execute]: SQLSTATE[23000]: 完整性约束违规:1452 无法添加或更新子行:外键约束失败 ( yokotachi. prod_category, CONSTRAINT prod_category_ibfk_4FOREIGN KEY ( product_id) REFERENCES product( product_id) ON DELETE CASCADE ON UPDATE CASCADE) 在第 27 行的 C:\xampp\htdocs\yokotachi\models\Prod_category.php

我确认,有 2 个参数被传递到函数中,但我不知道为什么它不能执行查询。

if($_POST){ 
$title = mysql_real_escape_string($_POST['title']);
$model = mysql_real_escape_string($_POST['model']);
$description = stripslashes($_POST['description']);
$feature = stripslashes($_POST['feature']);
$specification = stripslashes($_POST['specification']); 

$subcategory_name = mysql_real_escape_string($_POST['product_subcategory']);

$sub_obj = $subcategory->find_by_sub_category_name($subcategory_name);

$subcategory_id = $sub_obj->sub_category_id;
echo $subcategory_id;
$executed_product_id=
    $product->create($title,$model,$description,$feature,$specification);
echo "im here".$subcategory_id;
echo $executed_product_id;
$responde = $prod_category->create($executed_product_id,$subcategory_id);
if($responde){
    echo "<script>";
    echo "alert(".$executed_product_id.");";
    echo "</script>";
    header("location: ../../../views/admin/product/product_index.php");
}}

我确实看到 1 个帖子是重新索引问题,并要求截断表格。但我不知道如何在我的情况下执行截断查询。

提前致谢。

4

1 回答 1

0

错误消息似乎告诉您,您尝试在“prod_category”表中使用的产品 ID 号在“product”表中不存在。

您需要在此行执行后找出 $executed_product_id 的值。

$executed_product_id=
    $product->create($title,$model,$description,$feature,$specification);

如果它的值不在“产品”表中,那就是你的问题。外键引用要求产品 ID 存在于“产品”中,然后您才能在“产品类别”中使用它。

于 2012-10-17T15:16:41.803 回答