在学习<form>元素时,enctype属性有三个值 enctype属性表格: 不对字符编码。 在使用包含文件上传控件的表单时,必须使用该值。 其中,当值为multipart/form-data时,<input>元素的type属性必须为file。 type属性表格: 后来我在学习requests模块 ...
分类:
移动开发 时间:
2017-10-16 13:38:55
阅读次数:
215
logincheck.jsp的代码 if(doc.toString() != null){//id正确,取出数据库中的密码进行验证 String dbPwd = doc.getPassword(); if(dbPwd.equals(pwd)){//密码正确,跳转到主页面 request.setAtt ...
分类:
其他好文 时间:
2017-10-13 23:50:55
阅读次数:
211
//第一种方式:只获取用户的openid function getBaseInfo(){ //1.获取到code $appid = "wx75f3d0f10c8567ad"; $redirect_uri = urlencode("www.test.com/test/Index/getUserOpen ...
分类:
微信 时间:
2017-10-10 19:03:22
阅读次数:
564
比如地址为:http://www.baidu.com/index.aspx?url=http://www.baidu.com/info.aspx?id=1&type=1,用Request["url"]取出的值为 http://www.baidu.com/info.aspx?id=1,丢失了type= ...
分类:
Web程序 时间:
2017-10-10 18:58:08
阅读次数:
179
spider.py 1 # -*- coding:utf-8 -*- 2 from urllib import urlencode 3 import requests 4 from requests.exceptions import RequestException 5 import json 6 ...
分类:
Web程序 时间:
2017-10-10 13:22:02
阅读次数:
206
动态数据使用 Ajax 来实现,且通常为异步发生 动态数据建造的网页被称为数据驱动网页,即仅有框架,数据负责网页的内容 XMLHttpRequest readyState : 请求状态:0 ( 未初始 ), 1 ( 开启 ), 2 ( 已传送 ), 3 ( 接受中 ), 4 ( 已载入 ) stat ...
分类:
其他好文 时间:
2017-09-28 16:44:14
阅读次数:
139
返回结果: a=1&b=2&data=%7B%22sessionId%22%3A%220bts0W1DWKm70B4UZq3V1h3r2DpsbhDsc2WD%22%2C%22eventId%22%3A%228F2qNf0bts0W1DWKm70B4UZq3V1h3r2Dpsbh%22%2C%22a ...
分类:
Web程序 时间:
2017-09-27 13:31:56
阅读次数:
294
引言: 接上一篇文章讲述处理@RequestMapping的方法参数绑定之后,详细介绍下@RequestBody、@ResponseBody的具体用法和使用时机;同时对曾经看的一篇文章中讲述的某些部分进行澄清 (文章地址:http://www.byywee.com/page/M0/S702/7024 ...
分类:
其他好文 时间:
2017-09-25 14:41:49
阅读次数:
130
/TransmitFile实现下载 protected void Button1_Click1(object sender, EventArgs e) { string strFileName = "三部闲置设备管理系统操作手册IEMS.ppt"; Response.ContentType = "a ...
分类:
Web程序 时间:
2017-09-25 13:24:53
阅读次数:
174
引入函数ajax(method,url,postStr,dataType="json"){ return new Promise((resolve,reject)=>{...} )}; method: 请求方式,string类型,常取值:get post... url:请求地址,string类型 p ...
分类:
Web程序 时间:
2017-09-23 15:24:36
阅读次数:
246