3

我被困在代码中。我设法创建了一个在 db 中添加多个行的表单,但是当我需要使用 product_code 作为 id 时,我不知道如何同时更新它们。

这是表1(产品)结构:

id | product_name | product_code
1  | Name1        | 101
2  | Name2        | 102
3  | Name3        | 103
4  | Name4        | 104

这是表 2 (products_ing) 结构:

id | product_code | ing_name  | ing_weight
1  | 101          | INGName1  | 110
2  | 101          | INGName2  | 10
3  | 101          | INGName3  | 54
4  | 101          | INGName4  | 248

这是编辑功能:

    public function post_edit($id = null)
{

    if(Input::get('submit'))
    {
        // ID
        if($id !== null)
        {
            $id = trim(filter_var($id, FILTER_SANITIZE_NUMBER_INT));
        }


        $input = Input::all();

        $validation = Validator::make($input);

        else
        {
            foreach ($input as $key => $value)
            {
                $input[$key] = ($value !== '') ? trim(filter_var($value, FILTER_SANITIZE_STRING)) : null;
            }

            try
            {

                DB::table('products')
                    ->whereIn($id)
                    ->update(array(
            'product_name'          => $items['product_name'],
            'product_code'          => $items['product_code']
                ));


            }

    }

    return $this->get_edit($id);
}

有了这个,我只能通过 id从products表中编辑 *product_name* 和product_code 。但是我正在尝试使用相同的product_code来更新 db 中的多行,作为 id。

// 我在Google 图片上找到了一张很好的图片,它解释了我正在尝试做的事情,但使用 Laravel:

图片链接

有解决办法吗?先感谢您!

4

1 回答 1

0

假设您使用 MySQL:让数据库foreign key为您执行此操作,使用ON UPDATE CASCADE命令。如果您更改product_code基表中的 ,这将更新所有引用的products表。

创建脚本products_ing

...
product_code INT NOT NULL REFERENCES products(product_code) ON UPDATE CASCADE
...

作为 laravelmigration

Schema::create('products_ing', function($table) {
    $table->increments('id');
    $table->int('product_code');
    $table->string('ing_name');
    $table->int('ing_weight');

    /* All the other key stuff */
    $table
        ->foreign('product_code')
        ->references('product_code')
        ->on('products')
        ->onUpdate('cascade');
});
于 2013-07-17T06:07:43.000 回答