websocket 配置 map $http_upgrade $connection_upgrade { default upgrade; '' close; } server { listen 80; server_name localhost; location /ws { proxy_pass ...
分类:
Web程序 时间:
2020-09-18 01:47:02
阅读次数:
46
执行 GET 请求 // 为给定 ID 的 user 创建请求 axios.get('/user?ID=12345') .then(function (response) { console.log(response); }) .catch(function (error) { console.lo ...
分类:
移动开发 时间:
2020-09-18 01:37:15
阅读次数:
46
1、读入一幅RGB图像,将其变换为灰度图像和二值图像,并在同一个窗口内分别显示原图,灰度图像和二值图像,分别标注图像名称。clear allimg = imread('onion.png');img_gray = rgb2gray(img);figure;subplot(3,1,1);imshow(... ...
分类:
其他好文 时间:
2020-09-18 01:36:04
阅读次数:
77
import pymysql user=input() pwd=input() conn = pymysql.connect(host = 'localhost', user = '数据库用户名',password='数据库密码',database ='数据库名‘) cursor = conn.cu ...
分类:
数据库 时间:
2020-09-18 00:13:19
阅读次数:
35
Given an integer array nums, find the contiguous subarray within an array (containing at least one number) which has the largest product. Example 1: I ...
分类:
其他好文 时间:
2020-09-18 00:08:22
阅读次数:
27
1 前言
2 环境准备
3 Mybatis注解实现常用的CRUD
4 Mybatis注解实现一对一关联查询
5 Mybatis注解实现一对多关联查询 ...
分类:
其他好文 时间:
2020-09-17 23:32:14
阅读次数:
25
一、概念 在代理服务器的磁盘中保存请求目标的内容,加快响应速度,减少应用服务器(后端服务器)上的资源 开销,比如多客户端请求相同的资源,代理缓存命中后,对于应用服务器来说,只发生了一次资源调 度。 而浏览器上的缓存配置,一般来说是用来减少本地IO的,请求目标的内容会存放在浏览器本地。 二、缓存代理的 ...
分类:
其他好文 时间:
2020-09-17 23:08:09
阅读次数:
33
int* plusOne(int* digits, int digitsSize, int* returnSize){ int i,carry=1; int* arr = (int*)calloc(digitsSize+1,sizeof(int)); for (i=digitsSize-1; i>= ...
分类:
其他好文 时间:
2020-09-17 22:54:01
阅读次数:
25
题目如下: Given an array nums, you are allowed to choose one element of nums and change it by any value in one move. Return the minimum difference between ...
分类:
其他好文 时间:
2020-09-17 22:48:12
阅读次数:
35
通过innotifywait的工具监听文件改动写入日志#!/bin/bashMON_DIR=/optinotifywait-mqr--format%f-ecreate$MON_DIR|\whilereadfiles;doecho"$(date+‘%F%T‘)$files">>file_mon.logdone
分类:
系统相关 时间:
2020-09-17 21:38:02
阅读次数:
41