摘要: 在工作中,会导出一份mysql的html来查看,用的是就是路过秋天大神的那个工具,所以想自己用那个样式直接在后端写一个页面做展示! 前端页面 然后是 html 静态页面 阅读全文
posted @ 2018-12-20 20:56 libaibuaidufu 阅读(961) 评论(0) 推荐(0) 编辑
摘要: ## 版本搭配很重要 一般报错都是版本出了问题 ```python 3.6amqp 1.4.9anyjson 0.3.3asn1crypto 0.24.0billiard 3.3.0.23celery 3.1.18 # 如果小于celery-with-redis 3.0certifi 2018.11 阅读全文
posted @ 2018-12-20 20:52 libaibuaidufu 阅读(1610) 评论(0) 推荐(0) 编辑
摘要: import decimal class DecimalEncoder(json.JSONEncoder): def default(self, o): if isinstance(o, decimal.Decimal): return float(o) super(DecimalEncoder, self).default(o) # and the... 阅读全文
posted @ 2018-12-20 20:50 libaibuaidufu 阅读(993) 评论(0) 推荐(0) 编辑
只有注册用户登录后才能阅读该文。 阅读全文
posted @ 2018-12-20 20:43 libaibuaidufu 阅读(0) 评论(0) 推荐(0) 编辑