宝藏网站来源于b站UP主 “我是莫提" https://flatuicolors.com/ 前端配色参考网站 http://zhongguose.com/ 中国传统颜色网站 https://www.iconfont.cn/ 阿里矢量图标库网站 http://www.fontawesome.com.c ...
分类:
Web程序 时间:
2020-06-30 22:44:12
阅读次数:
93
《Windows Azure Platform 系列文章目录》 今天下午正好需要查询Azure资源,这里简单介绍一下: 1.查询Azure虚拟机信息: https://github.com/leizhang1984/AzureChinaResourceGraph/blob/master/1Query ...
分类:
其他好文 时间:
2020-06-30 22:31:12
阅读次数:
64
Vuex 简介 Vuex是实现组件全局状态()数据管理的一种机制,可以方便的实现组件之间的数据共享 Vuex 是实现组件全局状态(数据)管理的一种机制,可以方便的实现组件之间数据的共享。 vue中两组间数据传递 未使用Vuex 使用Vuex 可以看出未使用vuex实现两组间的数据传递 会涉及众多无关 ...
分类:
其他好文 时间:
2020-06-30 20:59:00
阅读次数:
96
前言 Django 的查询语法难以简单的表达复杂的 WHERE 子句,对于对于这种情况, Django 提供了 extra() 方法。 extra() 能在 QuerySet 生成的SQL从句中注入新子句,这样可以完成复制的查询。 extra() extra 方法的源码在 models/query. ...
分类:
编程语言 时间:
2020-06-30 20:27:44
阅读次数:
70
可以在web.config配置文件修改 具体做法: 在web.config中进行如下配置 <system.web> <sessionState mode="InProc" timeout="30"/> </system.web> InProc模式 优点:获取session状态的速度快,session ...
1、用name和params传参(参数不会带在地址中,页面刷新参数会丢失) 对应路由配置 { path: '/detail', name: 'detail', component: detail } 跳转时传参 this.$router.push({ name: 'detail',// 页面名称 p ...
分类:
其他好文 时间:
2020-06-30 17:37:38
阅读次数:
67
http_build_query()函数使用方法 http_build_query()函数的作用是使用给出的关联(或下标)数组生成一个经过 URL-encode 的请求字符串。 写法格式:http_build_query ( mixed $query_data [, string $numeric_ ...
分类:
Web程序 时间:
2020-06-30 14:40:58
阅读次数:
91
准备 实体 @Data @Table(name = "task_apply") @Entity public class TaskApply { @Id @GeneratedValue @Column(name = "apply_id") private Long applyId; private ...
分类:
其他好文 时间:
2020-06-29 23:09:57
阅读次数:
144
今天看项目日志,发现报这个异常。 是tomcat容器的问题,因为出现了特殊字符,所以报异常了。Invalid character found in the request target. The valid characters are defined in RFC 7230 and RFC 398 ...
分类:
编程语言 时间:
2020-06-29 18:33:31
阅读次数:
97
rtsp://127.0.0.1:8554accept client;client ip:127.0.0.1,client port:52770 C->S OPTIONS rtsp://127.0.0.1:8554 RTSP/1.0CSeq: 2User-Agent: LibVLC/2.2.8 (L ...
分类:
其他好文 时间:
2020-06-29 13:34:09
阅读次数:
34