„Schreiben Sie keine Informationen in die Datenbank'.
P粉321584263
P粉321584263 2024-03-22 12:33:37
0
1
605

不保存到数据库 Hilf mir, meinen Fehler zu verstehen

Controller

public function store(Request $request)
{
    $item = Cart::where('product_id', $request->product_id);

    if ($item->count()) {
        $item->increment('quantity');
        $item = $item->first();
    } else {
        $item = Cart::forceCreate([
            'product_id' => $request->product_id,
            'quantity' => 1,
        ]);
    }

    return response()->json([
        'quantity' => $item->quantity,
        'product' => $item->product
    ]);
}

Shop

addProductToCart (product, quantity) {
        axios.post('http://127.0.0.1:8000/api/cart', {
            product_id: product.id,
            quantity
        })
},

Elemente werden nicht zur Datenbank hinzugefügt, wenn Sie auf die Schaltfläche „Elemente hinzufügen“ (zum Beispiel) klicken

P粉321584263
P粉321584263

Antworte allen(1)
P粉323374878

我的突变恰好位于错误的模块中

add_to_cart(state, {product, quantity}) {

        let productInCart = state.cart.find(item => {
            return item.product.id === product.id;
        });

        if (productInCart) {
            productInCart.quantity += quantity;
            return;
        }

        state.cart.push({
            product,
            quantity
        })
    },
Neueste Downloads
Mehr>
Web-Effekte
Quellcode der Website
Website-Materialien
Frontend-Vorlage