## HTML标签:表单标签 * 表单: * 概念:用于采集用户输入的数据的。用于和服务器进行交互。 * 使用的标签:form标签 * 属性: * action:指定数据提交的URL * method:指定提交方式 * 分类:一共7种 get: 1、请求参数会在地址栏中显示。 2、请求参数长度是有限 ...
分类:
Web程序 时间:
2020-02-08 17:52:33
阅读次数:
96
环境准备 1.python3.6 2.django2.0+ 3.bootstrap3 后台代码 #创建login_check视图函数,用来处理登录 def login_action(request): if request.method == "POST": username = request.P ...
分类:
其他好文 时间:
2020-02-08 15:35:44
阅读次数:
150
dataassociator base类 enumerate_joint_hypotheses function 实现如下 1 @classmethod 2 def enumerate_joint_hypotheses(cls, hypotheses): 3 """Enumerate the pos ...
分类:
编程语言 时间:
2020-02-07 21:04:13
阅读次数:
77
idea在调试时出现Method breakpoints may dramatically slow down debugging,一直卡在 Initializing Spring embedded WebApplicationContext 断点打在方法某个断点卡住了。 快捷键:Ctrl - Sh ...
分类:
其他好文 时间:
2020-02-07 17:14:03
阅读次数:
271
1.abstract class Name { private String name; public abstract boolean isStupidName(String name){}} 大侠们,这有何错误? 答案: 错。 abstract method 必须以分号结尾,且不带花括号。 2. ...
分类:
编程语言 时间:
2020-02-07 12:43:29
阅读次数:
74
Servlet_生命周期:首先加载servlet的class,实例化servlet,然后初始化servlet调用init()的方法,接着调用服务的service的方法处理doGet和doPost方法,最后是我的还有容器关闭时候调用destroy 销毁方法。1.被创建:执行init方法,只执行一次 1 ...
分类:
其他好文 时间:
2020-02-07 10:33:26
阅读次数:
64
我们先来以滚动时间窗口为例,来看一下窗口的几个时间参数与Flink流处理系统时间特性的关系。获取窗口开始时间Flink源代码获取窗口的开始时间为以下代码:org.apache.flink.streaming.api.windowing.windows.TimeWindow/** * Method t... ...
分类:
其他好文 时间:
2020-02-07 01:15:39
阅读次数:
143
发送POST请求 POST 请求过程中,都是采用请求体承载需要提交的数据 var xhr = new XMLHttpRequest() // open 方法的第一个参数的作用就是设置请求的 method xhr.open('POST', './add.php') // 设置请求头中的 Content ...
分类:
Web程序 时间:
2020-02-06 23:30:12
阅读次数:
88
本篇博客的行文思路 1. 分析文件上传的需求 2.实现基本的文件上传 3.封装文件上传 4.知识点总结 一、文件上传的需求 1. 文件上传三要素 type=file method=post enctype=multipart/form-data 2. 文件上传的需求 # 判断是否是POST协议上传的 ...
分类:
Web程序 时间:
2020-02-06 14:59:31
阅读次数:
107
vue代码(使用element-ui): 思路:依次遍历fileList数组,将其中的每个图片文件提取出,再加入到formdata中,因为是多文件上传,后端以文件数组的形式接受, 因此每次合并到formdata的key值都为同一值。 uploadImg() { let imgfile = new F ...
分类:
编程语言 时间:
2020-02-06 10:28:46
阅读次数:
302