码迷,mamicode.com
首页 >  
搜索关键字:form    ( 21236个结果
2 jmeter 发送请求
1 发送请求 点击运行按钮发送请求 2 查看结果 红色代表请求失败 请求状态码200并不代表请求成功,企业微信自定义errcode=0表示成功 提示数据格式错误 查看请求,发现可能参数放在form里不行 根据API将请求参数放在路径位置 请求成功 3 查看json提取信息 根据响应内容重新编写提取路 ...
分类:其他好文   时间:2021-01-29 11:46:46    阅读次数:0
项目管理 - Coding Standard
Code Structure 代码结构 命名保持规范,驼峰命名。 Boolean方法,起名要以"is" / "has"开头。 方法名称要是动词。 ...... Design Principles 设计原则 Apply the Single-Responsibility principle to in ...
分类:其他好文   时间:2021-01-28 12:20:52    阅读次数:0
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
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
21236条   上一页 1 ... 22 23 24 25 26 ... 2124 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!