摘要: 冒泡排序 def func(alist): for x in range(1,len(alist)): for i in range(0,len(alist)-x): if alist[i] > alist[i+1]: alist[i], alist[i+1] = alist[i+1], alist 阅读全文
posted @ 2020-12-19 19:52 小芒果测开笔记 阅读(107) 评论(0) 推荐(0) 编辑
摘要: 1.python基础 1.1 列表常用方法 #1. append用于在列表末尾追加新的对象 a = [1,2,3] a.append(4) #the result : [1, 2, 3, 4] #2. count方法统计某个元素在列表中出现的次数 a = ['aa','bb','cc','aa',' 阅读全文
posted @ 2020-12-19 19:50 小芒果测开笔记 阅读(67) 评论(0) 推荐(0) 编辑
摘要: 1. 导出命令 pip freeze > filename.txt,其中filename可以自己定义。 2.当前的包和版本 这是之前电脑上下载过的所有数据 django amqp==2.6.1 asgiref==3.2.7 billiard==3.6.3.0 celery==4.4.7 certif 阅读全文
posted @ 2020-12-19 19:48 小芒果测开笔记 阅读(167) 评论(0) 推荐(0) 编辑
摘要: 1. 代码逻辑要尽量简洁,符合处理问题的逻辑。 2. 开始写函数时,就要考虑清楚函数需要解决的问题,函数的输入输出。而且函数模块的可复用性要高。 3. 编写代码时,尽量先从框架入手,要具备框架思维,才能写出漂亮的代码。 4. 对于重复使用的模块要将其封装为函数或类。 5. 提升代码能力的前提,1读, 阅读全文
posted @ 2020-12-19 19:32 小芒果测开笔记 阅读(1166) 评论(0) 推荐(0) 编辑
摘要: 1.创建订单并生成支付链接接口 1.1 goods/urls.py中注册路由 urlpatterns = [ path('getpayurl/',views.PayUrlView.as_view()), ] 1.2 goods/views.py 中写视图函数 from rest_framework. 阅读全文
posted @ 2020-12-19 19:30 小芒果测开笔记 阅读(388) 评论(0) 推荐(0) 编辑
摘要: 1.支付宝支付流程 https://www.lanqiao.cn/vip 2.新建支付宝应用 # 访问"支付宝开发平台"登录,可以访问开发者中心 https://open.alipay.com/platform/home.htm # 可以参考"电脑网站支付" 熟悉电脑支付整体流程 https://d 阅读全文
posted @ 2020-12-19 19:29 小芒果测开笔记 阅读(1200) 评论(0) 推荐(0) 编辑
摘要: 1.图书管理系统后端接口 books/models.py 中设置表 class Book(models.Model): btitle=models.CharField(max_length=32) bpub_date=models.DateField() bread=models.IntegerFi 阅读全文
posted @ 2020-12-19 19:11 小芒果测开笔记 阅读(226) 评论(0) 推荐(0) 编辑
摘要: 在http/apis.js/添加后端请求路由 /* eslint-disable */ import { head } from 'shelljs' import{get,post,put,del} from './index' //用户登录 export const login = (params 阅读全文
posted @ 2020-12-19 19:07 小芒果测开笔记 阅读(429) 评论(0) 推荐(0) 编辑