摘要: 支付回调页支付信息 vue需要把支付凭证传递给django,django把订单状态改为已支付,并在UserCourse表中存储用户购买课程信息 mounted() { this.query = this.$route.query payment_post(this.query).then((resp 阅读全文
posted @ 2020-10-16 20:42 BeginnerY 阅读(164) 评论(0) 推荐(0) 编辑
摘要: 1.syl/settings.py 中配置支付相关参数 # 支付宝配置 ALIPAY_APPID = '2016102600762786' # 沙箱环境中alipay应用ID ALIPAY_DEBUG = True # alipay沙箱环境支付宝网关 ALIPAY_URL = 'https://op 阅读全文
posted @ 2020-10-16 20:38 BeginnerY 阅读(458) 评论(0) 推荐(0) 编辑
摘要: 1.支付宝支付流程 2. 新建支付宝应用 # 访问"支付宝开发平台"登录,可以访问开发者中心 https://open.alipay.com/platform/home.htm # 可以参考"电脑网站支付" 熟悉电脑支付整体流程 https://docs.open.alipay.com/270/10 阅读全文
posted @ 2020-10-16 20:26 BeginnerY 阅读(1518) 评论(0) 推荐(0) 编辑
摘要: 1.表结构分析 1.1 商品模块表结构分析 from django.db import models # Create your models here. class Base(models.Model): create_time = models.TimeField(auto_now_add=Tr 阅读全文
posted @ 2020-10-16 20:07 BeginnerY 阅读(133) 评论(0) 推荐(0) 编辑
摘要: 1.原理图 2.获取七牛云token 官方文档:https://developer.qiniu.com/kodo/sdk/1242/python 在oauth/views中 from qiniu import Auth # 七牛云 class GetTokenView(APIView): def g 阅读全文
posted @ 2020-10-16 20:01 BeginnerY 阅读(404) 评论(0) 推荐(0) 编辑