会员
周边
众包
新闻
博问
闪存
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
zipon
博客园
首页
新随笔
联系
管理
订阅
上一页
1
···
3
4
5
6
7
8
9
10
11
···
35
下一页
2020年3月4日
图表转图片
摘要: $("#download").click(function() { var svg = $('svg')[0]; var svg_xml = (new XMLSerializer).serializeToString(svg); var base64 = btoa(unescape(encodeUR
阅读全文
posted @ 2020-03-04 15:15 zipon
阅读(164)
评论(0)
推荐(0)
2020年2月28日
macaron 根目录默认为templates文件夹,所以如果启动目录同目录下有templates目录,要给它指定另一个文件夹
摘要: m *macaron.Macaron //随便指向一个目录,因为web没用到模板,不能使用默认值templates,因为这个目录被其他模板占用了m.Use(macaron.Renderer(macaron.RenderOptions{Directory: "template"}))
阅读全文
posted @ 2020-02-28 15:50 zipon
阅读(692)
评论(0)
推荐(0)
2020年2月27日
table 表格配色
摘要: 不使用rgb,rgb在邮件客户端中渲染不同。 表头: #5B9BD5 偶数行: #DEEAF6 奇数行: #C5D9F1 特殊标记行(周末): #8DA6E8 #A3BFE8 #d3dee8
阅读全文
posted @ 2020-02-27 15:52 zipon
阅读(1361)
评论(0)
推荐(0)
2020年1月16日
应用连接数瓶颈解决方案
摘要: 连接数出现瓶颈,总是在4k左右。 1.查看系统最大进程数ulimit -a。查看相关进程的limits /proc/xxxxid/limits 2.nginx worker_connections 默认是1024.每个worker最大1024个连接。调整足够大。我设置为15000,4个worker,
阅读全文
posted @ 2020-01-16 09:56 zipon
阅读(407)
评论(0)
推荐(0)
2020年1月8日
idea修改文件的打开方式
摘要: 如果之前改错了,找到,删除就行了。
阅读全文
posted @ 2020-01-08 18:03 zipon
阅读(3628)
评论(0)
推荐(0)
golang template使用
摘要: <html> <head> <title>邮件标题</title> <meta http-equiv="Content-Type" content="text/html;charset=utf-8" /> <meta name="description" content="alert results
阅读全文
posted @ 2020-01-08 11:07 zipon
阅读(357)
评论(0)
推荐(0)
2020年1月2日
childnode的after()方法失效问题
摘要: $('form table tbody').children()[2].after(deadlineTr)页面直接展示html源码。说明after会不生效正确方法:不使用childNode $('form table tbody tr').eq(2).after(deadlineTr);
阅读全文
posted @ 2020-01-02 15:26 zipon
阅读(238)
评论(0)
推荐(0)
2019年12月18日
vue双循环或者多循环作用于同一元素时,在外套template标签
摘要: 如图,两个v-for,都是要循环创建tr标签。同理,v-if也是套template
阅读全文
posted @ 2019-12-18 18:35 zipon
阅读(1014)
评论(0)
推荐(0)
vue遇到组件数据变更了,但是不渲染的问题
摘要: 要绑定key,key改变,会触发组件重新渲染
阅读全文
posted @ 2019-12-18 18:29 zipon
阅读(2411)
评论(0)
推荐(0)
2019年12月13日
golang xorm时区问题
摘要: mysql连接后面加 &loc=Local否则执行sql的时间格式,存到数据库会按0时区 UTC存储
阅读全文
posted @ 2019-12-13 15:56 zipon
阅读(798)
评论(0)
推荐(0)
上一页
1
···
3
4
5
6
7
8
9
10
11
···
35
下一页
公告