引言 我对于本科时光的印象,还停留在那所普通 211 大学的建筑物之间,我坐在大学的时光长廊里,满眼望去,都是经历的过的故事。可毕业后回首,却很少有人能说,自己从来没有迷茫过。迷茫,仿佛就是一团乌云,笼罩在每一个心中怀有抱负的人的头上。每当夜深人静,思绪归于对自己人生未来的严肃思考,不知去往何处的苦 ...
分类:
其他好文 时间:
2020-02-24 12:59:34
阅读次数:
118
ngTemplateOutlet 的用法HTML <span class="ant-alert-message" *ngIf="nzMessage"> <ng-container *ngIf="isMessageString; else messageTemplate">{{ nzMessage } ...
分类:
其他好文 时间:
2020-02-24 12:46:13
阅读次数:
68
前置知识 https://blog.csdn.net/u013457794/article/details/88997699?depth_1 utm_source=distribute.pc_relevant.none task&utm_source=distribute.pc_relevant.n ...
分类:
移动开发 时间:
2020-02-23 23:52:38
阅读次数:
93
随便注? 那么我就不客气了,先试试返回真值: ' or 1=1# 返回了所有查询内容,共三条,order by猜测字段长,发现为2,验证了一下: 日常操作: ' or 1=1 union select 1,table_name,3 from information_schema.tables# 匹配 ...
分类:
其他好文 时间:
2020-02-23 20:34:17
阅读次数:
118
Quick pow is very important and basics. 法一(递归法): 先举个栗子: 求2 ^10? 我们将它分为下面五步: 2^10 = 2^5 * 2^5 2^5 = 2 * 2^4 2^4 = 2^2 * 2^2 2^2 = 2^1 * 2^1 2^1 = 2 * 2 ...
分类:
其他好文 时间:
2020-02-23 15:00:27
阅读次数:
127
技术点:springcloud + kafka + hbase + mogodb 1、建立实体对象 浏览商品行为 ScanProductLog 收藏商品行为 CollectProductLog 购物车行为 BuyCartProductLog 关注商品行为 AttentionProductLog 2、 ...
分类:
其他好文 时间:
2020-02-23 14:57:19
阅读次数:
95
一、环境依赖版本 1、npm安装yarn npm install -g yarn 查看版本: yarn --version 二、脚手架搭建以及在项目中引用antd插件 ...
分类:
其他好文 时间:
2020-02-23 09:35:46
阅读次数:
39
https://blog.csdn.net/qq_19734597/article/details/86135079?depth_1-utm_source=distribute.pc_relevant.none-task&utm_source=distribute.pc_relevant.none- ...
分类:
编程语言 时间:
2020-02-22 21:52:40
阅读次数:
61
在最近的项目里,页面和静态文件并不是很多的情况下,打包后发现产出的静态资源却很大。 1.关掉sourcemap 在config/webpack.config.js文件里,大概30几行的位置添加这样一句代码,这样做的作用是防止线上生成环境将源码一起打包部署。 2.将一些公共的库(比如antd)做一个缓 ...
分类:
移动开发 时间:
2020-02-21 18:31:15
阅读次数:
278
数据库创建 DROP DATABASE IF EXISTS `sql_invoicing`; CREATE DATABASE `sql_invoicing`; USE `sql_invoicing`; SET NAMES utf8 ; SET character_set_client = utf8m ...
分类:
数据库 时间:
2020-02-21 17:51:25
阅读次数:
106