跳至主內容區

XOOPS輕鬆架

:::

主內容區域

選擇後會自動跳轉頁面

5-8 resources\views\product\add2cart.blade.php

$('.btn-add-to-cart').click(function () {
    console.log($(this).data('id') + ' = ' + $('input[name=amount]').val());
    axios.post('{{ route('cart.store') }}', {
        product_id: $(this).data('id'),
        amount: $('input[name=amount]').val(),
    })
        .then(function () { // 請求成功時執行:
            swal('加入購物車成功', '', 'success').then(function() {
            location.href = '{{ route('cart.index') }}';
            });
        }, function (error) { // 請求失敗時執行:
            @guest
            swal('請先登入', '', 'error');
            @endguest

            @auth
            swal('系統錯誤', '', 'error');
            @endauth
        })
});

 

選擇後會自動跳轉頁面

:::

左邊區域內容

書籍目錄

展開 | 闔起

快速登入


右邊區域內容

請掃此 QR Code 可連至此頁面

計數器

今天: 6666
昨天: 3121312131213121
總計: 9437950943795094379509437950943795094379509437950

頁尾區域