HTTP概念 HTTP用于客户端和服务器之间的通信 客户端:请求访问文本或图像等资源的一端 服务器端而提供资源响应的一端 通过请求和响应的交换达成通信 HTTP 协议规定,请求从客户端发出,最后服务器端响应该请求并返回 请求报文是由请求方法、请求 URI、协议版本、可选的请求首部字段和内容实体构成的 ...
分类:
Web程序 时间:
2021-02-09 12:15:20
阅读次数:
0
。
const methodOverride = require('method-override')
const { v4: uuid } = require('uuid'); //For generating ID's
// To 'fake' put/patch/delete request... ...
分类:
其他好文 时间:
2021-02-09 11:57:54
阅读次数:
0
<input class="" type="text"></input> 加上“autocomplete”属性,禁止显示历史记录 <input class="" type="text" autocomplete="off"></input> ...
分类:
其他好文 时间:
2021-02-08 12:31:34
阅读次数:
0
1.vue配置 /** * * 相对于该配置的nginx服务器请参考nginx配置文件 * */ module.exports = { // 基本路径 publicPath: '/', // 输出文件目录 outputDir: 'dist', // webpack-dev-server 相关配置 d ...
分类:
编程语言 时间:
2021-02-08 11:40:26
阅读次数:
0
1、mysql数据库表结构 2、pom.xml依赖 <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-actuator</artifactId> </dependency> ...
分类:
数据库 时间:
2021-02-06 11:44:36
阅读次数:
0
题意简述 给定$M$个长度为$N$的序列,从每个序列中任取一个数求和,求前$N$小和。 数据范围见题 简单口胡 \(M = 1\) 把原序列排个序输出完事。 \(M = 2\) 我们将两个序列分别假设为$a,b$,并已经将其排好序。 定义: 第$k$小和为$F(k)$ 若$a_i + b_j$可能是 ...
? A common typing error is to place the hands on the keyboard one row to the right of the correct position. So ‘Q’ is typed as ‘W’ and ‘J’ is typed as ...
分类:
其他好文 时间:
2021-02-01 12:19:45
阅读次数:
0
【解决办法】:将list放入map中,再输出Map 1 Map result = new HashMap(); 2 result.put("result", bussDataList); 3 log.info(JSON.toJSONString(result)); 【结果】: 1 { 2 "resu ...
分类:
Web程序 时间:
2021-02-01 11:50:47
阅读次数:
0
即点即改: 1 @if($v->fang_status==1) 2 <span class="label label-info radius zhuangtaiUp" id="zhuangtaiUp" href="{{route('admin.zhuangtaiUp',['id'=>$v->id]) ...
分类:
其他好文 时间:
2021-01-29 12:18:41
阅读次数:
0
练习二级缓存Reedis 1.创建一个maven项目 配置基础pom.xml <!-- 父级项目 --> <parent> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-parent</arti ...
分类:
其他好文 时间:
2021-01-28 12:21:10
阅读次数:
0