上一页 1 2 3 4 5 6 7 8 9 10 ··· 45 下一页
  2021年8月10日
摘要: 源码: <head> <script type="text/javascript" src="qrcode.min.js"></script> </head> <body style="padding: 50px;"> <div> <div> <h3>参考: <a href="http://code 阅读全文
posted @ 2021-08-10 15:47 清清飞扬 阅读(626) 评论(0) 推荐(0) 编辑
  2021年7月30日
摘要: From: https://www.cnblogs.com/niuben/p/10749134.html 数据查询 复制代码 User::find()->all(); 此方法返回所有数据; User::findOne($id); 此方法返回 主键 id=1 的一条数据(举个例子); User::fi 阅读全文
posted @ 2021-07-30 23:19 清清飞扬 阅读(367) 评论(0) 推荐(0) 编辑
  2020年12月1日
该文被密码保护。 阅读全文
posted @ 2020-12-01 17:06 清清飞扬 阅读(0) 评论(0) 推荐(0) 编辑
  2020年10月13日
摘要: rm -f ~/Library/Preferences/com.prect.NavicatPremium15.plist 经测有用!重新打开后相当于软件新装的情况,即有14天的试用期! 阅读全文
posted @ 2020-10-13 16:58 清清飞扬 阅读(11117) 评论(1) 推荐(0) 编辑
  2020年10月12日
摘要: From: https://www.cnblogs.com/AaronCui/p/10968893.html 前言 批量插入由于mysql的VALUES原生支持,使用较为便利。 批量更新的写法一般有三种,在更新数量较少的情况下,前两种性能不相上下。但是在更新字段增加,更新条数较多(500以上)建议使 阅读全文
posted @ 2020-10-12 11:37 清清飞扬 阅读(11333) 评论(0) 推荐(2) 编辑
  2020年6月18日
摘要: 客户端示例(antd - Upload组件): 文件上传 <div> <Upload action='/api/login/upload' showUploadList={false}> <Button> <Icon type='upload' /> Upload </Button> </Uploa 阅读全文
posted @ 2020-06-18 22:21 清清飞扬 阅读(765) 评论(0) 推荐(0) 编辑
  2020年6月5日
摘要: https://github.com/yiminghe/async-validator 阅读全文
posted @ 2020-06-05 16:31 清清飞扬 阅读(192) 评论(0) 推荐(0) 编辑
  2020年6月3日
摘要: 组件文件: UploadFile.vue <template> <a-upload name="file" :disabled="uploading" :action="url" v-bind="others" :show-upload-list="false" @change="change" > 阅读全文
posted @ 2020-06-03 22:33 清清飞扬 阅读(763) 评论(0) 推荐(0) 编辑
摘要: 上传文件组件:UploadFile.jsx import React from "react"; import * as antd from "antd"; const { Upload, Button, Icon, message } = antd; class Wrapper extends R 阅读全文
posted @ 2020-06-03 17:30 清清飞扬 阅读(985) 评论(0) 推荐(0) 编辑
  2020年5月21日
摘要: 数据库表中有个字段: latest_receive_time, 类型是timestamp,因业务需求,需要在这个时间的值上作一次加法运算,加59秒,并且有一定的where条件限制。 执行语句如下: select id,latest_receive_time,second(latest_receive 阅读全文
posted @ 2020-05-21 12:00 清清飞扬 阅读(2712) 评论(3) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 9 10 ··· 45 下一页