码迷,mamicode.com
首页 >  
搜索关键字:form 表单    ( 35284个结果
1027 Colors in Mars (20分)
People in Mars represent the colors in their computers in a similar way as the Earth people. That is, a color is represented by a 6-digit number, wher ...
分类:其他好文   时间:2021-01-28 12:14:24    阅读次数:0
lazarus free pascal不支持匿名方法
unit Unit1; {$mode objfpc}{$H+} interface uses Classes, SysUtils, Forms, Controls, Graphics, Dialogs, StdCtrls, Unit2; type TMyProc = procedure of obj ...
分类:其他好文   时间:2021-01-27 13:59:43    阅读次数:0
Maven之如何用assembly插件打jar包
maven-assembly-plugin有什么好处呢? 英文原文:The Assembly Plugin for Maven is primarily intended to allow users to aggregate the project output along with its de ...
分类:编程语言   时间:2021-01-27 13:58:43    阅读次数:0
SpringMVC中自定义(日期)类型转换器
目录 说明解决办法效果展示 说明 注意:表单提交的任何数据类型全部都是字符串类型,但是后台定义Integer类型,数据也可以封装上,说明Spring框架内部会默认进行数据类型转换。 解决办法 1、自定义类型转换器,实现Converter的接口 StringToDateConverter类: pack ...
分类:编程语言   时间:2021-01-27 13:34:52    阅读次数:0
Django基础(9): 表单Forms的高级使用技巧
自定义字段属性和错误信息 对于每个字段你可以设置其是否为必需,最大长度和最小长度。你还可以针对每个属性自定义错误信息,见下面代码。 from django import forms class LoginForm(forms.Form): username = forms.CharField( re ...
分类:其他好文   时间:2021-01-26 12:42:23    阅读次数:0
Get和Post请求方式
Get和Post是两种不同的类型的请求。 它们主要有3点不同。 1.get请求通过浏览器地址栏传递表单数据。post请求通过form data 传递数据,不会通过地址栏。 2.get请求安全性较低,post请求安全性较高 3.get请求不能上传大量的数据,每次只能传递1M数据。post请求可以上传大 ...
分类:其他好文   时间:2021-01-26 12:03:31    阅读次数:0
12-form表单标签
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>form表单</title> </head> <!-- 所有标签都有的属性 id 用来标识元素的唯一性 name 用来提交数据时的参数名称 style 设置元素的css行内样式 c ...
分类:其他好文   时间:2021-01-25 11:39:18    阅读次数:0
Django REST framework安装、调试
参考: # 安装 pip install djangorestframework pip install django-redis # 调试 http #官网教程1,pip install httpie 可以用来调试http https://blog.csdn.net/ppppfly/article ...
分类:其他好文   时间:2021-01-25 11:31:38    阅读次数:0
iframe跨域解决方案-2(postMessage)
1.父域页面(a.html):act/msg/evalStr 为自定义属性 <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>Insert title here</title> </head> <body> <input type ...
分类:其他好文   时间:2021-01-25 11:20:46    阅读次数:0
二十四:文件上传之WAF绕过及安全修复
上传参数名解析:明确哪些参数名可以修改 content-Disposition:一般可更改(from-data)接受表单的数据 name:表单参数值,不能更改 filename:文件名,可以更改 connect-Type:文件MIME,试情况而定 常见绕过方法 数据溢出-防止匹配(xxx...) 也 ...
分类:Web程序   时间:2021-01-25 10:53:05    阅读次数:0
35284条   上一页 1 ... 32 33 34 35 36 ... 3529 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!