摘要: 常用数据库 mongoDB4.0: 下载:https://www.mongodb.com/ 安装:略 注意: 使用前修改bin目录下配置文件mongodb.cfg,删除最后一行的'mp'字段 1. 启动服务与终止服务 net start mongodb net stop mongodb 2.创建管理 阅读全文
posted @ 2019-10-14 14:44 Huanghongzheng 阅读(115) 评论(0) 推荐(0) 编辑
摘要: from email.header import Header from email.mime.text import MIMEText from email.mime.image import MIMEImage from email.mime.base import MIMEBase from 阅读全文
posted @ 2019-10-14 14:36 Huanghongzheng 阅读(245) 评论(0) 推荐(0) 编辑
摘要: 第一种 from django.db import transaction with transaction.atomic(): ... 第二种 @transaction.atomic def post(self,request): ... sid=transaction.savepoint() 开 阅读全文
posted @ 2019-10-14 14:35 Huanghongzheng 阅读(1070) 评论(0) 推荐(0) 编辑