码迷,mamicode.com
首页 >  
搜索关键字:orm 一对多    ( 18618个结果
python读取ppt内容
import json from pptx import Presentation from pptx.enum.shapes import MSO_SHAPE_TYPE def ppt_catch_format_text(filename): """ 抓取PPT的内容,按段落返回 其中 filen ...
分类:编程语言   时间:2021-01-13 11:11:20    阅读次数:0
确定要包含的Delphi运行时程序包(Determining Delphi Runtime Packages to Include)
I have a Delphi DLL that houses a form which uses a variety of third party components. This DLL is used by many different versions of Delphi. I compil ...
分类:Windows程序   时间:2021-01-12 11:20:38    阅读次数:0
多线程拆分list,合并list
今天有一个接口20s 才能展示出来数据,这怎么可以领导直接让我去处理这个接口,处理不出来就不要下班了 我心中一紧 赶紧去看这是哪个垃圾写出来的代码 浏览了一下代码发现 需求是这样子的 后台请求一个地址 返回了一个list集合,我拿着这个list 集合对象的主键,再去调用查看详情接口,拼接到原来的对象 ...
分类:编程语言   时间:2021-01-11 10:36:24    阅读次数:0
python快速读取文件最后一行新姿势
显示百分比 import sys import time n = 1 while n <= 100: sys.stdout.write('{}{:.0f}%\r'.format('*' * n, float(n / 100) * 100)) if n == 100: sys.stdout.write ...
分类:编程语言   时间:2021-01-08 10:50:22    阅读次数:0
django orm order_by 根据汉字首字母排序 [ORDER BY CONVERT(name USING gbk)ASC]查询
首先mysql sql语句查询公司名称首字母排序如下: SELECT * FROM `表名` ORDER BY CONVERT (company USING gbk) Desc; django框架用orm查询 models.Contacts.objects.all().order_by('CONVE ...
分类:编程语言   时间:2021-01-08 10:39:34    阅读次数:0
VUE引入自定义文字方式
单vue文件引入老是报错,所以我用了全局引入 1.先在assets里新建font文件夹,把字体放进去,然后在字体旁边新建font.less, font.less内容如下: @font-face{ font-family: 'aaabbb'; src: url('./aaa-bbb.otf'); fo ...
分类:其他好文   时间:2021-01-07 12:11:04    阅读次数:0
echarts仪表盘
option = { series: [ { type: "gauge", center: ["50%", "45%"], // 仪表位置 radius: "80%", //仪表大小 startAngle: 200, //开始角度 endAngle: -20, //结束角度 axisLine: { ...
分类:其他好文   时间:2021-01-07 12:07:01    阅读次数:0
Matlab/Simulink 中怎样加快仿真速度(2)--三种仿真模式normal /Accelerator/Rapid-Accelerator设置
Matlab/Simulink 中怎样加快仿真速度(2)--三种仿真模式normal /Accelerator/Rapid-Accelerator设置 ...
分类:Windows程序   时间:2021-01-07 12:05:42    阅读次数:0
echarts 双环饼形图
option = { tooltip: { show: true, formatter: "{a}:{d}%" }, series: [ { name: '销量3', type: 'pie', hoverAnimation: false, //鼠标移入变大 clockWise: false, rad ...
分类:其他好文   时间:2021-01-07 12:02:18    阅读次数:0
[React] Redux Toolkit notes
Highlights: Solve the complexities of write Redux (actions, reducers, selector...middleware...) Solve the immutable pattern with nested spread operato ...
分类:其他好文   时间:2021-01-06 11:43:35    阅读次数:0
18618条   上一页 1 ... 23 24 25 26 27 ... 1862 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!