Markdown学习 标题 三级标题 字体 hello world hello world hello world hello world 引用 引用一段话 分割线 图片 超链接 点击跳转到百度 列表 a b c 1 2 3 表格 姓名性别生日 张三 男 20001.1 代码 public ...
分类:
其他好文 时间:
2021-01-05 11:38:49
阅读次数:
0
安装运行Nginx (1)下载Nginx镜像 docker pull nginx (2)启动Nginx docker run --name nginx -p 80:80 -d nginx 这样就简单的把nginx启动了。 (3)修改配置文件 但是我们想要改变配置文件nginx.conf ,进入容器, ...
分类:
其他好文 时间:
2021-01-05 11:30:17
阅读次数:
0
1. 问号后面带的参数 url:http://localhost:4200/news?key=japan html 调用方法: <a [routerLink]="['/news']" [queryParams]="{key:'japan'}"> 跳转 ts 调用方法: private router: ...
分类:
其他好文 时间:
2021-01-05 10:50:30
阅读次数:
0
在nginx配置中添加 location / { try_files $uri $uri/ @router; index index.html; } location @router { rewrite ^.*$ /index.html last; } ...
分类:
其他好文 时间:
2021-01-04 11:32:56
阅读次数:
0
就是一个请求从前台到后台处理的过程需要用到的东西,最少包括以下点:js,html,css,ajax,ajax跨域,跨站脚本,web缓存,web优化,nginx,apache作用,鉴权方式,cookie,session,servlet,filter,基本数据结构,线程池,线程并发,缓存,io等等,知识 ...
分类:
其他好文 时间:
2021-01-04 11:32:05
阅读次数:
0
一、案例一 1、实现效果 打开浏览器,在浏览器地址栏输入地址 www.123.com,跳转到 liunx 系统 tomcat 主页面中。 2、准备工作 (1)在 liunx 系统安装 tomcat, 使用默认端口 8080 tomcat 安装文件放到 liunx 系统中,解压 进入 tomcat 的 ...
分类:
其他好文 时间:
2021-01-04 11:18:59
阅读次数:
0
server { listen 80; server_name localhost; rewrite ^(.*)$ https://$host$1 permanent; } server { listen 443 ssl; server_name localhost; proxy_buffering ...
分类:
Web程序 时间:
2021-01-04 11:17:46
阅读次数:
0
1. Handler使用引出 现在作为客户,有这样一个需求,当打开Activity界面时,开始倒计时,倒计时结束后跳转新的界面(思维活跃的朋友可能立马想到如果打开后自动倒计时,就类似于各个APP的欢迎闪屏页面),如下图: 作为初学者,可能觉得直接开启一个包含倒序循环的子线程就ok了,具体实现如下: ...
分类:
移动开发 时间:
2021-01-04 10:50:09
阅读次数:
0
一、wx.navigateTo(OBJECT) wx.redirectTo({ url: 'test?id=1' }) 二、wx.redirectTo(OBJECT) wx.redirectTo({ url: 'test?id=1' }) 三、wx.switchTab(OBJECT) wx.swit ...
分类:
微信 时间:
2021-01-04 10:37:37
阅读次数:
0
一、 前端(<a th:href="@{'/record_details/'+${record.id}}" target="_blank"></a>: <a th:href="@{'/record_details/'+${record.id}}" target="_blank"> <i><img t ...
分类:
编程语言 时间:
2021-01-04 10:36:42
阅读次数:
0