码迷,mamicode.com
首页 >  
搜索关键字:div    ( 119410个结果
socketio 新建连接需要设置参数
web端:socket.io.js 小程序端:weapp.socket.io.js const params = { query:‘’,//连接参数 path: '/socket.io', 'force new connection':true //新开一个websocket连接 } const w ...
分类:其他好文   时间:2021-06-25 16:30:53    阅读次数:0
Maven中资源导出问题解决方案--pom.xml配置
<build> <resources> <resource> <directory>src/main/resources</directory> <includes> <include>**/*.properties</include> <include>**/*.xml</include> </i ...
分类:其他好文   时间:2021-06-24 18:28:56    阅读次数:0
flex布局一行三列,最后一行不足自动向前排实现
一行三列循环自适应,是移动端常见的布局 当使用display flex justify-content: space-between;最后一行只有两个时候,会出现分居两端,我们此时需要把最后一行改为向前布局 我的解决方案如下: <div> <p class="item">1</p> <p class ...
分类:其他好文   时间:2021-06-24 18:16:06    阅读次数:0
mysql commit和事务
1、pymysql默认开启事务,对于表的数据的操作需要使用commit, 但是如果删库删表的操作就不一样,没办法rollback 一般来说用如下方法使用事务,如果不需要使用事务则不用rollback,直接commit就可以 try: cursor.execute("update moneyTable ...
分类:数据库   时间:2021-06-24 18:13:46    阅读次数:0
springboot数据库密码加密-使用自定义加密算法
jasypt是一个简单方便的第三方加解密库,可以快速的集成到springboot环境中 引入依赖 <!-- 数据库加密 --> <dependency> <groupId>com.github.ulisesbocchio</groupId> <artifactId>jasypt-spring-boo ...
分类:数据库   时间:2021-06-24 18:11:09    阅读次数:0
coco数据集格式
COCO 的jeson 文件: "images": [{"file_name": "811000171.jpg", "height": 720, "width": 1280, "id": 811000171}, {"file_name": "811000131.jpg", "height": 720 ...
分类:其他好文   时间:2021-06-24 18:06:36    阅读次数:0
Codeforces Round #699 (Div. 2)
E.Sorting Books 题目描述 点此看题 解法 \(\tt Almost\space art!The\space art\space of\space enumeration!\) 不难发现每本书最多移动一次,移动多次一定是不优的。 那么每本书就有两种状态:不移动和移动。我们枚举每本书的状 ...
分类:其他好文   时间:2021-06-24 17:52:19    阅读次数:0
核结构单体跃迁算符
这都是教科书上都有的内容,我只是整理整理,把一些约定也统一一下,方便以后写代码的时候参照。 1. 约定 1.1 约化矩阵约定 \[ \langle J'M' | s \sigma | J M \rangle = \langle J' || s || J \rangle (JM,s \sigma| J ...
分类:其他好文   时间:2021-06-23 17:11:58    阅读次数:0
js去空 去除空格
/** * 去除左侧空格 */ function lTrim(str) { if (str) { return str.replace(/(^\s*)/g,""); } return null } /** * 去除右侧空格 */ function rTrim(str) { if (str) { re ...
分类:Web程序   时间:2021-06-23 17:07:01    阅读次数:0
sql dataadd() 函数
dataadd() 函数在日期中添加或减去指定的时间间隔 2021-04-24 前一天的时间 dataadd('2021-04-24 00:00:00',-1,'dd'); ...
分类:数据库   时间:2021-06-23 17:01:00    阅读次数:0
119410条   上一页 1 ... 8 9 10 11 12 ... 11941 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!