对产品不起作用的Laravel删除方法

时间:2016-07-19 11:32:55

标签: php laravel blade destroy

我有一个视图,其中我显示了我的数据库中的所有产品,在该视图中,我可以查看编辑和删除每个产品。

删除功能现在无法正常工作:

查看如下:

@foreach($products as $productKey => $productValue)
    <tr>
        <td>{{ $productValue->id }}</td>
        <td>{{ $productValue->title }}</td>
        <td>

            @if($productValue->dr)
                <a href="{{ route('editProduct', $productValue->id) }}" title="edit product"></a>
                <form action="{{ route('destroyProduct') }}" method="post" name="delete_product_form">
                    <input type="hidden" name="_method" value="delete">
                    <input type="hidden" name="_token" value="{{ csrf_token() }}">
                    <input type="hidden" name="id" value="{{ $productValue->id }}">
                    <a href="#" title="delete" data-form="delete_product_form" data-action="submit"></a>
                </form>
                ...
            @endif

        </td>
    </tr>
@endforeach

我的破坏方法看起来像这样:

public function destroyProduct(Request $request)
{
    $productID = $request->get('id');
    $product   = Product::find($productID);

    $deleteFolder  = "folderpath...";

    if(is_dir($deleteFolder))
    {
        if(Helper::removeDirRecursive($deleteFolder))
        {
            if($product)
            {
                $product->delete();
                return redirect()->route('indexProduct')->with('message', 'Success');
            }
            else
            {
                return redirect()->route('indexProduct')->with('message', 'Error');
            }
        }
    }
    elseif($product)
    {
        $product->delete();
        return redirect()->route('indexProduct')->with('message', 'Success');
    }
    return redirect()->route('indexProduct')->with('message', 'Error');
}

目前它只是删除了最新的产品,如果我回应

$product

我总是得到最新的产品。

如何更改功能以删除我选择的产品。

修改

我尝试了这个但是仍然无效:

<form action="{{ route('destroyProduct', $productValue->id) }}" method="post" name="delete_product_form">

修改

我的javascript提交功能:

observerSubmitButton: function() {
    $('.observeSubmit').on('click', function() {
        action   = $(this).data('action');
        formName = $(this).data('form');

        if(action == 'submit')
        {
            $('form[name="'+formName+'"]').submit();
        }

    });
},

2 个答案:

答案 0 :(得分:2)

改变这个:

@if($productValue->dr)
            <a href="{{ route('editProduct', $productValue->id) }}" title="edit product"></a>
            <form action="{{ route('destroyProduct') }}" method="post" name="delete_product_form">
                <input type="hidden" name="_method" value="delete">
                <input type="hidden" name="_token" value="{{ csrf_token() }}">
                <input type="hidden" name="id" value="{{ $productValue->id }}">
                <a href="#" title="delete" data-form="delete_product_form" data-action="submit"></a>
            </form>
            ...
        @endif

到这个

@if($productValue->dr)
            <a href="{{ route('editProduct', $productValue->id) }}" title="edit product"></a>
            <form action="{{ route('destroyProduct') }}" method="post">
                <input type="hidden" name="_method" value="delete">
                <input type="hidden" name="_token" value="{{ csrf_token() }}">
                <input type="hidden" name="id" value="{{ $productValue->id }}">
                <button type="submit">Delete</button>
            </form>
            ...
@endif

或者您可以拥有一个计数器

<?php $count=0; ?>
@foreach($products as $productKey => $productValue)
<tr>
    <td>{{ $productValue->id }}</td>
    <td>{{ $productValue->title }}</td>
    <td>

        @if($productValue->dr)
            <a href="{{ route('editProduct', $productValue->id) }}" title="edit product"></a>
            <form action="{{ route('destroyProduct') }}" method="post" name="delete_product_form{{$count}}">
                <input type="hidden" name="_method" value="delete">
                <input type="hidden" name="_token" value="{{ csrf_token() }}">
                <input type="hidden" name="id" value="{{ $productValue->id }}">
                <a href="#" title="delete" data-form="delete_product_form{{$count++}}" data-action="submit"></a>
            </form>
            ...
        @endif

    </td>
</tr>
@endforeach

答案 1 :(得分:0)

使用

$product=Product::find($id) 

 $product=Product::where('id',$id)

找到产品
那么

 $product->delete(); 

删除它