首页
留言板
关于
三味的小站
世界上没有偶然,有的只是必然的结果。
累计撰写
63
篇文章
累计创建
14
个标签
累计收到
0
条评论
栏目
目 录
CONTENT
以下是
三味线
的文章
2021-12-21
QScintilla使用
QScintilla是一个支持高亮、自动补全、页边(显示行号、断点)等功能的代码编辑控件 下载:https://riverbankcomputing.com/software/qscintilla/download 需要注意它的不同版本依赖不同的Qt版本,我使用的是Qt5.6.3 + QScinti
2021-12-21
40
0
0
Qt
2021-11-02
Qt6 QNetworkRequest ProtocolInvalidOperationError(302)
在Qt6.2.1中使用HTTP GET请求时,出现了错误:QNetworkReply::ProtocolInvalidOperationError,但是用postman调用同一接口就是正常的,用Wireshark查看2次请求的header发现,Qt6使用了HTTP/2: 正常的: 错误的:
2021-11-02
43
0
0
Qt
2021-08-19
Qt Linguist清除无效翻译
{Your_Qt_Path}/bin/lupdate.exe {Your_Project_Path}/{Your_Project_Name}.pro -noobsolete 附命令帮助: lupdate Usage: lupdate [options] [project-file]
2021-08-19
41
0
0
Qt
2021-05-06
zint编译(VS2015)
Zint是一个强大的一、二维码生成工具 接口文档:https://zint.org.uk/Manual.aspx?type=p&page=5 zint_manual.pdf 一、下载zlib,libpng,zint zlib: https://zlib.net/fossils/ libpng:
2021-05-06
33
0
0
Qt
2021-02-09
PGSQL查询结果按IN顺序排序
一个使用IN的查询 SELECT id,fullname FROM sys_user WHERE id IN(5,74,6,67) // 结果 5 nancy 6 helen 67 chris 74 莎莉 使用 POSITION SELECT id,fullname FROM sys_user WH
2021-02-09
16
0
0
sql
2020-12-04
QTableView选中行文字颜色不变
表格单元格文字颜色可以通过ForegroundRole来设置,但选中高亮的颜色是另外设的,且优先级更高,好像只能通过styleSheet样式设置,想要选中时文字颜色保持不变,可以使用代理。 使用代理 class CommonDelegate : public QStyledItemDelegate
2020-12-04
110
0
0
Qt
2020-07-19
Qt导出PDF(QPainter、QTextDocument)
// 添加打印支持 QT += printsupport // 包含头文件 #include <QDesktopServices> #include <QFileDialog> #include <QTextBlock> #include <QTextDocument> #include
2020-07-19
16
0
0
Qt
2020-06-06
python requests 请求传参数空格处理
import json import urllib import requests param1 = {'name': 'hello world'} param2 = urllib.parse.urlencode({'name': 'hello world'}, quote_via=urllib.p
2020-06-06
14
0
0
python
2020-05-14
PGSQL COPY命令导入/导出数据
PGSQL中可使用COPY命令来导入/导出数据,这里以CSV文件为例。 导出数据 SQL Shell执行: COPY table_name (col1,col2,col3) TO 'path_name.csv' CSV HEADER; 如果表格使用了分表,需使用select获取数据: COPY (s
2020-05-14
13
0
0
sql
2020-04-27
Python发送邮件
#!/usr/bin/python # -*- coding: UTF-8 -*- import smtplib from email.mime.text import MIMEText from email.header import Header # 第三方 SMTP 服务 mail_host
2020-04-27
14
0
0
python
1
2
3
4
5
6
7