router.beforeEach((to, from, next) => { if (to.matched.length 0) { next('/error404') } else { if (!sessionStorage.getItem('sid')&&to.path!="/login") { ...
分类:
其他好文 时间:
2020-07-22 20:40:10
阅读次数:
94
前言 之前经常在一些网站看到一些特别炫酷的特效,例如文字呈粒子状的特效,或图片的蒙太奇效果,刚巧找了相关的canvas动画研究了一些,因此在这里做一个简单的总结。 思路 一个像素点是由四个值组成的 RGBA,第一个像素点 RGBA [data[0],data[1],data[2],data[3]]; ...
分类:
其他好文 时间:
2020-07-22 20:36:41
阅读次数:
79
select * from table where id=1 and uid=2 and (status=2 or status=3 or status=4); 以下个人使用案例:多个字段,查询条件 格力 SELECT a.sid, a.spid, a.sname, a.spic, a.sprice ...
分类:
数据库 时间:
2020-07-22 16:02:21
阅读次数:
87
其中实体类的属性如下: 是采用快捷方式由IDEA自动生成的get和set方法。 JSP页面输出: 报错如下: 多次检查User类都发现么有问题,这问题就让人摸不着头脑,由于java的命名规则是首字母小写,默认接收的是小写,将其首字母改成小写便可。更改之后确实可以得到结果了,单SID确可以,也是很懵。 ...
分类:
其他好文 时间:
2020-07-21 23:19:58
阅读次数:
113
vue路由跳转有四种方式 router-link this.$router.push() (函数里面调用) this.$router.replace() (用法同push) this.$router.go(n) 一、不带参 1.1 router-link <router-link :to="{nam ...
分类:
其他好文 时间:
2020-07-20 20:29:52
阅读次数:
83
Best-Flutter-UI-Templates 地址:https://github.com/mitesh77/Best-Flutter-UI-Templates The History of Everything 地址:https://github.com/2d-inc/HistoryOfEve ...
分类:
其他好文 时间:
2020-07-20 10:35:39
阅读次数:
70
摘自 : meng5619 2020年20个Flutter最漂亮的UI库和项目 Best-Flutter-UI-Templates 地址:https://github.com/mitesh77/Best-Flutter-UI-Templates The History of Everything 地 ...
分类:
其他好文 时间:
2020-07-20 10:26:32
阅读次数:
83
用mina做了一个UDP接收的程序,绑定的时候没有指定IP,只是指定了端口。然后还是在本机连接127.0.0.1和UDP端口号,死活收不到数据。用TCP/UDP工具发送数据,提示如下: The virtual circuit was reset by the remote side executin ...
分类:
其他好文 时间:
2020-07-18 22:36:38
阅读次数:
154
China and Buddhism By far the most important gift that China received from India was neither cotton, nor sugar, nor the knowledge of saltpeter, but a ...
分类:
其他好文 时间:
2020-07-18 15:35:38
阅读次数:
83
定义函数的语法: def 函数名(参数) (语句) 1 #函数和变量 2 #函数里的变量与脚本里的变量是没有联系的。 3 def cheese_and_crackers(cheese_count,boxes_of_crackers): 4 print(f"You have {cheese_count ...
分类:
编程语言 时间:
2020-07-18 11:20:21
阅读次数:
87