舒服缘分

文章
7
资源
1
加入时间
3年0月8天

【angular5项目积累总结】panel组件

viewcodepanel.component.css:host { display:flex; min-width:300px }panel.component.html<header class="fxs-blade-header fxs-header fxs-blade-border fxs-trim-borde...

linux 重写路由nginx,Nginx实现URL重写

本文利用Nginx实现URL重写,本文使用Nginx与静态页面配合重写URL。1.准备工作。结合本文场景,需要安装Nginx。1.1 关于Linux系统安装Nginx可以参考我的文章—(传送门)。2.什么是URL重写?URL重写是指将一个URL请求重新写成网站可以处理的另一个URL的过程。这样说可能不是很好理解,举个例子来说明一下,在开发中可能经常遇到这样的需求,比如通过浏览器请求的http://...

螺旋矩阵

public class CircleArrayTest {public static int[][] circleArray(int[][] array,int x,int y,int start,int n){ //递归截止条件 if(n <= 0){ return array; } //最后一个 if(n == 1){ ...