Django电商项目---完成购物车页面day4

创建购物车项目App

python manage.py startapp df_cart

image

初始化项目:

manas/urls.py

image

manas/settings.py

image

创建新文件:df_cart/urls.py

image

创建模型类

df_cart/models.py

image

 

初始化数据库

python manage.py  makemigrations
python manage.py migrate

image

界面效果:

image

 

添加购物车操作

 

df_carts/views.py

image

df_carts/urls.py

image

在detail界面添加购物车

templates/df_goods/detail.html

image

 

在list界面添加购物车

templates/df_goods/list.html

image

 

添加购物车界面:

image

 

修改/删除商品

 

df_carts/urls.py

image

df_carts/views.py

image

修改templates/df_cart/cart.html(主要是利用ajax进行数据传输操作)

image

后台数据库显示:

image

posted @ 2019-02-17 16:35  小a玖拾柒  阅读(665)  评论(0编辑  收藏  举报