public static string HttpPostMultipartFormData(string url, NameValueCollection kVDatas, string method = WebRequestMethods.Http.Post, string encoding= ...
1、threadLocal运用的场景 最常见的ThreadLocal使用场景为 用来解决 数据库连接、Session管理等 public class ThradLocalTest { private static ThreadLocal<Connection> connectionHolder = ...
分类:
其他好文 时间:
2021-07-05 17:36:19
阅读次数:
0
const BASE_URL = '' let ajaxTime = 0 export const myRequest = (option) => { ajaxTime++ uni.showLoading({ title: "加载中", mask: true }) return new Promis ...
分类:
微信 时间:
2021-07-05 17:23:09
阅读次数:
0
3.3 变量-var ES变量是松散类型的,意思是变量可以用于保存任何类型的数据。每个变量只不过是一个用于保存值得命名占位符。 当前有三个关键字可以声明变量:var,const,let。但是目前只有var可以再任一版本的ES中使用,而const和let只能在ES6及以后的版本使用。 1.var关键字 ...
分类:
编程语言 时间:
2021-07-05 17:20:44
阅读次数:
0
import axios from 'axios'; import iView from 'iview'; const baseApiObj = { production: 'https://imzt.bndxqc.com/api', experience: 'https://imztty.bndx ...
分类:
Web程序 时间:
2021-07-05 16:58:57
阅读次数:
0
namespace 解析数字开头的变量JSON { class Program { static void Main(string[] args) { string strJson = "{\"1st_attempt\":\"2021-02-09 16:32:15\",\"2nd_attempt\" ...
changeTime (val) { const pattern = /^(\d{4})(\d{2})(\d{2})(\d{2})(\d{2})(\d{2})$/ try { return val.replace(pattern, '$1-$2-$3 $4:$5:$6') } catch (erro ...
分类:
其他好文 时间:
2021-07-05 16:39:44
阅读次数:
0
客户端 1 public static void main(String[] args) throws IOException { 2 3 4 5 // 创建客户端 6 7 SocketChannel sc = SocketChannel.open(); 8 9 10 11 // 指定要连接的服务器 ...
分类:
编程语言 时间:
2021-07-02 16:40:13
阅读次数:
0
先看代码 using System; using System.Collections.Generic; using System.Threading.Tasks; namespace AsyncStream { class Program { static async Task Main(stri ...
我的环境是:Django2.2 + Python3.7 Q1 将Django的DEBUG设置为False后,静态文件加载失败:报404 原因:Django的DEBUG设置为True,表示项目以调试方式运行,这种模式下程序出错后会在前端页面和后台报出对应错误,并且Django会自动搜索静态文件。设置D ...
分类:
其他好文 时间:
2021-07-02 15:53:24
阅读次数:
0