1.提交數(shù)據(jù):
創(chuàng)新互聯(lián)專業(yè)成都網(wǎng)站設(shè)計、成都網(wǎng)站制作,集網(wǎng)站策劃、網(wǎng)站設(shè)計、網(wǎng)站制作于一體,網(wǎng)站seo、網(wǎng)站優(yōu)化、網(wǎng)站營銷、軟文平臺等專業(yè)人才根據(jù)搜索規(guī)律編程設(shè)計,讓網(wǎng)站在運行后,在搜索中有好的表現(xiàn),專業(yè)設(shè)計制作為您帶來效益的網(wǎng)站!讓網(wǎng)站建設(shè)為您創(chuàng)造效益。
function addCate(productid)
{
//ajax請求php腳本完成數(shù)據(jù)的添加購物車表中
var url=ddCate.php;//提交地址
//確定需要傳遞的值,產(chǎn)品id 數(shù)量,數(shù)量根據(jù)輸入框id得到并轉(zhuǎn)換為整數(shù)
var data={"productid":productid,"num":parseInt($('#number').val())}
//第三個參數(shù) 回掉函數(shù)
var success=function(response)
{
if(response.errno==0){
alert('加入購物車成功');
}else{
alert('加入購物車失??!);
}
}
$.post(url,data,success,"json");
}
2.創(chuàng)建addCate.php表單加入購物車操作
//01.接收傳遞過來的參數(shù)
$productid=intval($_POST['productid']);//接受的為數(shù)據(jù) 可以進行×××約束
$num=intval($_POST['num']);
//02.準備要添加購物車數(shù)據(jù)
session_start();
$userid=$_SESSION['userid'];//得到用戶id
//根據(jù)產(chǎn)品id 進行數(shù)據(jù)庫查詢 得到商品單價
try{
$pdo=new PDO("MySQL:host=localhost;dbname=username","root","root",array(PDO::ATTR_ERRMODE=>PDO::ERRMODE_EXCEPTION));
$pdo->query('set names utf8);
$sql="select price from shop_product where id=?";
$stmt=$pdo->prepare($sql);
$stmt->execute(array($productid));
$data=$stmt->fetch(PDO::FETCH_ASSOC);
$price=$data['price'];
$createtime=time();
//03.完成購物車數(shù)據(jù)添加,進行預(yù)處理
$sql="insert into shop_cart(productid num userid price createtime)valur(?,?,?,?,?)";
$stmt=$pdo->prepare($sql);
$stmt->execute(array($product,$num,$price,$userid,$price,$createtime));
$rows=$stmt->rowcount();
}catch(PDO::Exception $e)
{
echo $e->getMessage();
}
//04.返回最后添加的結(jié)果
if($rows){
$response=array(
'errno'=>0;
'errmsg'=>'success’,
‘data'=>true,
)
}else{
$response=array(
'errno'=>-1;
'errmsg'=>'fail’,
‘data'=>fals,
)
}
echo json_encode($response);
3.數(shù)據(jù)表
shop_cart:
id (bigint(20)),product_id(bigint(20)), userid(bigint(20)), num(int(10)默認1) ,price(float8,2), createtime(int(10)).
shop_product: