<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>轮播图</title> <style> * { margin: 0; padding: 0; } #outer { width: 520px; height: ...
分类:
Web程序 时间:
2021-04-06 14:15:33
阅读次数:
0
html二维码生成器 使用QRCode.js库,将文本转换为二维码图片,图片以base64格式返回 代码: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>二维码生成器</title> <!-- QRCode ...
分类:
其他好文 时间:
2021-04-05 11:53:18
阅读次数:
0
测试 19c asm flex 的 功能: 在节点1上面执行 srvctl stop asm -node test-rac19c-01 -stopoption abort -force 报错 因为 ora.asm_listener.type 是asm监听的主节点,节点1为主节点,主节点无法关闭 [g ...
分类:
其他好文 时间:
2021-04-02 13:07:21
阅读次数:
0
一、文本与Base64 1、文本转Base64字符串 private static string StrToBase64(string str) { byte[] b = Encoding.Default.GetBytes(str); //转成 Base64 形式的 System.String st ...
父元素:box1,子元素:box2; 持续补充中。。。。。 一、子div定宽高 1. flex布局 .box1{ width: 300px; height: 300px; border: 1px solid red; display: flex; align-items: center; } .bo ...
分类:
其他好文 时间:
2021-04-01 13:41:10
阅读次数:
0
###### base64_编码 如果在linux上直接运行base64命令,则是对字符串进行编码在python和go语言中,需要将字符串转换成字节才能进行base64编码,两者的结果不一样 echo "Hello World" | base64 ###### read_同时为多个变量赋值 命令结果 ...
分类:
系统相关 时间:
2021-03-29 12:32:57
阅读次数:
0
使用element UI的upload组件 handleChange (file, fileList) { let _this = this if (this.formdata.printMode !== 'Bartender') return this.formdata.remark = file ...
分类:
数据库 时间:
2021-03-26 15:14:15
阅读次数:
0
前台getshell https://cloud.tencent.com/developer/article/1690304 /index.php/api/Uploadify/preview data:image/php;base64,PD9waHAgcGhwaW5mbygpOw== 后台登陆后ge ...
分类:
其他好文 时间:
2021-03-17 14:10:34
阅读次数:
0
代码 //base64编码 String a = new String(base64.encode(text.getBytes("UTF-8"))); String b = new String(Base64.encodeBase64(text.getBytes("UTF-8"))); String ...
分类:
Web程序 时间:
2021-03-16 14:04:57
阅读次数:
0
最近需要对网页进行整体截图 找了很多方法 1,打印另存为pdf 2,调整界面大小截图 测试下来,打印另存pdf可以,但是排版有点不太一样,而且配置比较麻烦,还需要用到pywin32对弹出得保存框进行确认 调整界面大小截图,这个无法实现,高度调不了太大 找了一下,发现chrome提供这个长截图:Cap ...
分类:
其他好文 时间:
2021-03-09 13:50:06
阅读次数:
0