0

我目前正在做一个关于不同类型头发颜色的网上商店,但我现在有点问题。我正在开发一个按钮,该按钮会自动从会话文件中删除一个产品。为此,我正在使用一条$request->session()->forget('cart');线。

这是我的控制器的样子:

public function index()
{
    // Dit zorgt ervoor dat alle producten in het tabel Product-
    // opgehaald worden en in de variabele $products gezet worden

    $products = Product::all();

    return view('winkelmand', compact('products'));
}

/**
 * Show the form for creating a new resource.
 *
 * @return void
 */
public function create()
{
    return false;
}

/**
 * Store a newly created resource in storage.
 *
 * @param \Illuminate\Http\Request $request
 * @return Application|Factory|View
 */
public function store(Request $request)
{
    $product = Product::find($request->id);
    if (!$product) {
        abort(404);
    }
    $id = $request->id;

    $cart = session()->get('cart');
    // Als het winkelwagendje leeg is, dan is dit het eerste product
    if (!$cart) {
        $cart = [
            $id => [
                "name" => $product->name,
                "description" => $product->description,
                "price" => $product->price,
                "quantity" => 1
            ]
        ];

        session()->put('cart', $cart);

        return view('winkelmand');
    }

    // Als het product al bestaat, dan de quantiteit verhogen met 1
    if (isset($cart[$id])) {
        $cart[$id]['quantity']++;
        session()->put('cart', $cart);

        return view('winkelmand');
    }
    // Als het product niet bestaat dan toevoegen met quantiteit = 1
    $cart[$id] = [
        "name" => $product->name,
        "price" => $product->price,
        "description" => $product->description,
        "quantity" => 1
    ];

    session()->put('cart', $cart);

    return view('winkelmand');
}

/**
 * Display the specified resource.
 *
 * @param Request $request
 * @param int $id
 * @return Application|Factory|View
 */
public function show(Request $request, $id)
{
    return false;
}


/**
 * Show the form for editing the specified resource.
 *
 * @param int $id
 * @return \Illuminate\Http\Response
 */
public function edit($id)
{
    return false;
}

/**
 * Update the specified resource in storage.
 *
 * @param \Illuminate\Http\Request $request
 * //     * @param int $id
 * @return \Illuminate\Http\Response
 */
public function update(Request $request)
{
    if ($request->id && $request->quantity) {
        $cart = session()->get('cart');

        $cart[$request->id]["quantity"] = $request->quantity;

        session()->put('cart', $cart);
        session()->flash('success', 'Cart updated successfully');
    }
}

/**
 * Remove the specified resource from storage.
 *
 * //     * @param int $id
 * @return string
 */
public function destroy(Request $request)
{
    //Deze functie moet ervoor zorgen dat er door middel van een knop de
    // desbetreffende item verwijderd wordt uit het winkelwagentje.
    // Deze functie werkt alleen nog niet en wordt dus niet gebruikt in de webshop

    $request->session()->forget('cart');
    dd('cart');

    return view('winkelmand');
}

我使用表单和方法POST向 HTML 添加了一个按钮:

<td>
    <form action="/winkelmand/{{ $id }}" method="POST">
        @csrf
        <input name="_method" type="hidden" value="delete" />
        <input type="submit" value="x" />
    </form>
</td>

所以它应该从会话中检索一个特定的产品(从按下的任何产品按钮),然后它应该从会话中忘记该键。

任何人都可以帮助我吗?

附言。对不起我的词汇量。

4

1 回答 1

0

你从来没有分享过问题是什么。它不工作吗?根据您的代码,我假设您正在获取 perma 404

一些技巧:

  • 不用做abort(404),直接使用即可findOrFail($request->id)
  • findOrFail当您可以利用Implicit Binding时,无需这样做。
  • 不用写<input name="_method" type="hidden" value="delete" />,直接做即可@method('DELETE')

我假设您的问题是您正在使用$request->id但您从不发送id. 您id在 URL 中有,但要使您的代码正常工作,您应该执行以下操作:

/**
 * Store a newly created resource in storage.
 *
 * @param \Illuminate\Http\Request $request
 * @return Application|Factory|View
 */
public function store(Request $request, $id)
{
    $product = Product::findOrFail($id);

请记住用上面的代码替换这部分代码:

public function store(Request $request)
{
    $product = Product::find($request->id);
    if (!$product) {
        abort(404);
    }
    $id = $request->id;

这仍然寻找存在的产品(没有随机ids)。然后获取cart,查找其中是否存在id(删除它),再次保存,完成。cartunsetcart

public function destroy(Request $request, $id)
{
    Product::findOrFail($id);

    $cart = session()->get('cart');

    if (isset($cart[$id])) {
        unset($cart[$id]);

        session()->put('cart', $cart);
    }

    return view('winkelmand');
}
于 2021-08-30T10:39:44.133 回答