html代码 <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>注册页面</title> </head> <body> <form action="/register" method="post"> <inpu ...
分类:
其他好文 时间:
2021-01-14 10:46:36
阅读次数:
0
swiper:https://www.swiper.com.cn/usage/index.html 安装swiper cnpm i -S swiper 在功能组件中定义Swiper组件并设置好插槽 <template> <div class="swiper-container"> <div clas ...
分类:
其他好文 时间:
2021-01-13 11:31:56
阅读次数:
0
ck数据导出到csv文件 clickhouse-client -h 127.0.0.1 --database="db" --query="select * from db.test_table FORMAT CSV" > test.csv csv文件导入到ck数据库 clickhouse-clien ...
分类:
其他好文 时间:
2021-01-13 11:25:56
阅读次数:
0
一、引言 最近看到一篇用js代码实现表白的文章,深有感触。 然后发现自己也可以用java代码实现,然后就开始写代码了,发现还挺有意思的,话不多说开搞 实现思路: 使用HttpClient远程获取彩虹屁生成器网站中的内容 网站:https://chp.shadiao.app/ java Mail 实现 ...
分类:
编程语言 时间:
2021-01-13 10:35:46
阅读次数:
0
Requests库是用Python编写的,基于urllib,采用Apache2 Licensed开源协议的HTTP库 更详细的介绍,请参考https://zhuanlan.zhihu.com/p/34199974下面讲解get方法和post方法的封装和调用import requests,jsoncl ...
分类:
其他好文 时间:
2021-01-13 10:35:27
阅读次数:
0
JWT """ 1、组成: header.payload.signature 头.载荷.签名 2、距离: eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VybmFtZSI6Im93ZW4iLCJleHAiOjE1NTgzMDM1 ...
分类:
其他好文 时间:
2021-01-13 10:31:37
阅读次数:
0
GET方法 从服务器获取数据 参数和值是在请求的URL中发送的: /test/demo_form.php?name1=value1&name2=value2 POST方法 向服务器提交数据 参数和值是在请求的HTTP消息主体中发送的: POST /test/demo_form.php HTTP/1. ...
分类:
Web程序 时间:
2021-01-12 11:21:51
阅读次数:
0
public function add() { $data = input('post.'); $img = request()->file('img_banner'); $info = $img->move("./static/uploads/lunbo"); if ($info) { // 输出 ...
分类:
Web程序 时间:
2021-01-12 10:30:06
阅读次数:
0
作者:冯忠旗 juejin.im/post/5cfde01bf265da1bba58f863 一、背景 对于互联网应用和企业大型应用而言,多数都尽可能地要求做到7*24小时不间断运行,而要做到完全不间断运行可以说“难于上青天”。为此,对应用可用性程度的衡量标准一般有3个9到5个9。 对于一个功能和数 ...
分类:
其他好文 时间:
2021-01-11 11:01:11
阅读次数:
0
自定义弹窗组件:https://www.cnblogs.com/Post-90sDachenchen/p/13636668.html#4795824 参考2:https://www.jianshu.com/p/4a2e8ca47ded 微信小程序自带弹窗组件 wx.showModal js示例: p ...
分类:
微信 时间:
2021-01-11 10:31:04
阅读次数:
0