java中购物车的功能怎么实现
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了java中购物车的功能怎么实现相关的知识,希望对你有一定的参考价值。
参考技术A 一般利用session,当货物提交后,让session失效,这样就可以完成简单的购物车。用cookie保存本地也可以。看你的具体需求了。 参考技术B package com.wuyadong.toolsbean;/****
* **/import java.util.ArrayList;import com.wuyadong.valuebean.GoodsSingle;public class ShopCar
private ArrayList buylist = new ArrayList();
public void setBuylist(ArrayList buylist)
this.buylist = buylist;
public void addItem(GoodsSingle single)
if(single!=null)
if(buylist.size()==0)
GoodsSingle temp = new GoodsSingle();
temp.setName(single.getName());
temp.setGood_Id(single.getGood_Id());
temp.setSell_id(single.getSell_id());
temp.setPrice(single.getPrice());
temp.setNum(1);
buylist.add(temp);
else
int i = 0;
for(;i < buylist.size();i++)
GoodsSingle temp = (GoodsSingle)buylist.get(i);
if(temp.getGood_Id()==single.getGood_Id())
temp.setNum(temp.getNum()+1);
break;
if(i>=buylist.size())
GoodsSingle temp = new GoodsSingle();
temp.setName(single.getName());
temp.setGood_Id(single.getGood_Id());
temp.setSell_id(single.getSell_id());
temp.setPrice(single.getPrice());
temp.setNum(1);
buylist.add(temp);
public void removeItem(int good_id)
for(int i=0;i < buylist.size();i++)
GoodsSingle temp = (GoodsSingle)buylist.get(i);
if(temp.getGood_Id() == good_id)
if(temp.getNum()>1)
temp.setNum(temp.getNum()-1);
break;
else
buylist.remove(i);
参考技术C session+cookie。先从cookie里读取上次的购物清单到session,本次添加的购物清单也将加入session。
php的购物车中的数组在下订单时怎样传到数据库中
在数据库中弄一个设置一个数组字段,然后接受IDSQL语句查询,正常输出;
打算数组:
$infoarray=explode(\'|,|\',$row[infoarray\']);
然后输出:
<?php echo infoarray$infoarray[0]?> //例如:数量
<?php echo infoarray$infoarray[1]?> //例如:单价(当然可以更多...) 参考技术A 在表单里放几个隐藏域 在value里写你要提交的数据 然后用POST方式提交表单。。。就可以在$_POST里得到值了
以上是关于java中购物车的功能怎么实现的主要内容,如果未能解决你的问题,请参考以下文章
『 高达 购物车案例 』jQuery + Java Script 全功能实现超详细 代码分析