Joan_wj 2016-06-09 16:58 采纳率: 0%
浏览 1446

jQuery+cookies写的购物车怎么获取值再下订单给数据库插入?

 /*
    | ----------------------------------------------------------------------------------
    | Shopping cart - Fetch Cookie data and display cart items购物车-获取Cookie数据并显示购物车条目
    | ----------------------------------------------------------------------------------
    */
    function output_cookie()
    {
        var cookie = $.cookie('cart'); /*获取cookie*/
        if ( cookie === undefined ) return;
        cookie = $.parseJSON(cookie);


        for ( var x in cookie )
        {
            temp = cookie[x].price;
            temp = temp.replace( /^\D+/g, '');/*\d表示数字, + 表示一个或多个,就是把连续的多个数字替换为空*/
            temp = parseFloat(temp).toFixed(2);/*parseFloat(1.2222).toFixed(2);    ///1.22 */

            var $new = $('<tr> \
                            <td> \
                                <a class="entry-thumbnail" href="' + cookie[x].thumbnail + '" data-toggle="lightbox">\
                                    <img src="' + cookie[x].thumbnail + '" alt="' + cookie[x].title + '" /> \
                                </a> \
                                <a class="entry-title" href="' + cookie[x].url + '">' + cookie[x].title + '</a> \
                            </td> \
                            <td><span class="unit-price">' + cookie[x].price + '</span></td> \
                            <td> \
                                <div class="qty-btn-group"> \
                                    <button type="button" class="down"><i class="iconfont-caret-down inline-middle"></i></button> \
                                    <input type="text" value="' + cookie[x].qty + '" /> \
                                    <button type="button" class="up"><i class="iconfont-caret-up inline-middle"></i></button> \
                                </div> \
                            </td> \
                            <td class="hidden-xs"><strong class="text-bold row-total">¥' + temp + '</strong></td> \
                            <td class="hidden-xs"><button type="button" class="close" aria-hidden="true">×</button></td> \
                        </tr>');

            $new.appendTo( $('.tbl-cart tbody') );
            $new.find('[data-toggle="lightbox"]').magnificPopup({
                type: 'image'
            });
        }

        update_cart_total();
    }
    output_cookie();




这是在jQuery文件里面,但是我要怎么获取这里面每个cookies的值,然后插入数据库?大神求解!!在线等
  • 写回答

1条回答 默认 最新

  • 斯洛文尼亚旅游 2016-06-10 01:57
    关注

    看json字符串结构,然后服务器建立json对应的类模型,反序列化为类就可以读取入库了。自己找你使用的服务器端语言如何反序列化json字符串为对象就行了

    
            var cookie = $.cookie('cart'); /*获取cookie*/
            if ( cookie === undefined ) return;
                    alert(cookie)///////////////////////
    
    评论

报告相同问题?

悬赏问题

  • ¥15 有两个非常“自以为是”烦人的问题急期待大家解决!
  • ¥30 STM32 INMP441无法读取数据
  • ¥100 求汇川机器人IRCB300控制器和示教器同版本升级固件文件升级包
  • ¥15 用visualstudio2022创建vue项目后无法启动
  • ¥15 x趋于0时tanx-sinx极限可以拆开算吗
  • ¥500 把面具戴到人脸上,请大家贡献智慧,别用大模型回答,大模型的答案没啥用
  • ¥15 任意一个散点图自己下载其js脚本文件并做成独立的案例页面,不要作在线的,要离线状态。
  • ¥15 各位 帮我看看如何写代码,打出来的图形要和如下图呈现的一样,急
  • ¥30 c#打开word开启修订并实时显示批注
  • ¥15 如何解决ldsc的这条报错/index error