查看远程仓库地址别名 git remote -v $ git remote -v origin https://github.com/qingzhuan/demo01.git (fetch) origin https://github.com/qingzhuan/demo01.git (push) ...
分类:
其他好文 时间:
2021-01-18 11:23:59
阅读次数:
0
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;#脚本文件请求的路径 fastcgi_param QUERY_STRING $query_string; #请求的参数;如?app=123 fastcgi_param R ...
分类:
其他好文 时间:
2021-01-18 10:38:12
阅读次数:
0
* ** Initial idea and first release by Igor Yaskevitch (IBS), 2003 ** Enhancements by Sergei Korolev, 2005 (added import queue ** manipulations, autho ...
分类:
Web程序 时间:
2021-01-16 12:13:36
阅读次数:
0
const int MAXN = 200000 + 10; const int MAXM = 2000000 + 10; int n, m; vi G[MAXN]; int vis[MAXN]; int fa[MAXN]; int ans[MAXN]; struct Query { int x, y ...
分类:
编程语言 时间:
2021-01-16 12:11:10
阅读次数:
0
http post请求后,返回消息码为504 504错误代表网关超时 (Gateway timeout),是指服务器作为网关或代理,但是没有及时从上游服务器收到请求。 服务器(不一定是 Web 服务器)正在作为一个网关或代理来完成客户(如您的浏览器或我们的 CheckUpDown 机器人)访问所需网 ...
分类:
Web程序 时间:
2021-01-16 11:39:43
阅读次数:
0
第一步创建实例 1 2 3 4 let http = axios.create({ // 这个里面可以设置一些请求头之类的配置<br>timeout: 3000, headers: {} }); 第二步 设置拦截器 2.1 拦截器分为 请求拦截器和响应拦截器 //请求拦截器代码格式如下 http.i ...
分类:
移动开发 时间:
2021-01-14 10:56:07
阅读次数:
0
简介 Jupyter Notebook是基于网页的用于交互计算的应用程序。支持实时代码,数学方程,可视化和 markdown,其可被应用于全过程计算:开发、文档编写、运行代码和展示结果,用途包括:数据清理和转换,数值模拟,统计建模,机器学习等等 pip安装 pip install jupyter 生 ...
分类:
编程语言 时间:
2021-01-14 10:48:02
阅读次数:
0
#项目结果: #构建对应数据库类型的类 样例的学生数据库比较简单,只有学号,姓名,年龄3个属性.对应的类也需要写出3种属性(用类的原因是后面可以包装成List操作方便) /* * To change this license header, choose License Headers in Pro ...
分类:
数据库 时间:
2021-01-14 10:45:42
阅读次数:
0
序号校验类型取值描述 1 required true&false 必须填写的字段 2 email “@”&“email” 必须输入正确格式的电子邮件 3 remote url路径 使用ajax进行验证 4 date 数字 正确格式日期 tips:ie6有bug 5 dateISO 字符串 正确格式的 ...
分类:
其他好文 时间:
2021-01-14 10:34:03
阅读次数:
0
<!-- 引入自己封装的 Ajax文件 测试下怎么用 --> <script src="myAjax.js"></script> <script> window.addEventListener('load', function() { var btn = document.querySelecto ...
分类:
Web程序 时间:
2021-01-13 11:30:00
阅读次数:
0