摘要: 1. api.php路由Route::apiResource('companyinfo','UserCompanyinfoController'); public function show(CompanyInfonew $companyinfo){ return $this->success($c 阅读全文
posted @ 2020-10-19 21:20 jackduan1 阅读(983) 评论(0) 推荐(0) 编辑
摘要: https://www.chriscalender.com/tag/mysql50lostfound/ 1.whereis mysql 可以查看mysql位置 2.编辑/etc/mysql/my.cnf 添加下面内容 [mysqld] ignore-db-dir=lost+found mysql> 阅读全文
posted @ 2020-09-28 19:05 jackduan1 阅读(367) 评论(0) 推荐(0) 编辑
摘要: 在flask中使用ORM sqlchemy 1.新建modles.py. 如果已有数据表,https://www.devmashup.com/generating-flask-sqlalchemy-models-with-flask-sqlacodegen/ 用flask-sqlacodegen来转 阅读全文
posted @ 2020-09-17 00:21 jackduan1 阅读(358) 评论(0) 推荐(0) 编辑
摘要: 一. flask做restfulapi,使用sqlachemy连接查询数据库,marshmallow解析数据,flask-restful响应 1. flask-sqlachemy需要模型类,根据已有的数据表生成models.py可以使用flask-sqlacodegen https://www.to 阅读全文
posted @ 2020-09-15 12:09 jackduan1 阅读(267) 评论(0) 推荐(0) 编辑
摘要: 一. oss如果是商品图片等公共文件,要设置成公共读,其他情况设置成私有 二. python flask框架上传文件到oss class UploadAtt(Resource): @jwt_required def post(self): file = request.files.get('file 阅读全文
posted @ 2020-09-12 01:14 jackduan1 阅读(1460) 评论(0) 推荐(0) 编辑
摘要: filter = [] filter.append(PayLog.objectid == current_user['id']) filter.append(PayLog.type == current_app.config['PAY_USETYPE_APPLY_MONEY']) if info[' 阅读全文
posted @ 2020-08-27 14:47 jackduan1 阅读(390) 评论(0) 推荐(0) 编辑
摘要: 1. https://www.cnblogs.com/sunqim16/p/10755054.html class DecimalEncoder(json.JSONEncoder): def default(self, o): if isinstance(o, decimal.Decimal): r 阅读全文
posted @ 2020-08-27 14:45 jackduan1 阅读(718) 评论(0) 推荐(0) 编辑
摘要: "_source" : { "ann_list" : [ { "ann_date" : "2018-12-20", "ann_num" : "1628" }], "ann_status" : 1 } ann_list = {1:1,2:2} data = { "script": { "source" 阅读全文
posted @ 2020-04-10 15:18 jackduan1 阅读(3991) 评论(0) 推荐(0) 编辑
摘要: 一 使用mysql问题,pymsql 有问题, 使用mysqlclienthttps://blog.csdn.net/qq_37040516/article/details/89339805$ python manage.py migrate如果pip装不上, 就去安装对应版本的whl1先确定pyt 阅读全文
posted @ 2019-12-14 16:17 jackduan1 阅读(144) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/mp624183768/article/details/81411601 str = '''第 766998 号 第 767000 号 . 申请日期 1994 年2月22日 申请日期 1994 年2月22日 人商标 商标KOR LOKDUR0O-LOK 使 阅读全文
posted @ 2019-12-11 15:59 jackduan1 阅读(1080) 评论(0) 推荐(0) 编辑