get请求:1,修改url加上new Date().getTime();等同于加上?v=1;2,在服务器加响应头response.setContentType("text/html;charset:UTF-8");response.addHeader("prama","no-cache");re.....
分类:
其他好文 时间:
2015-09-17 19:11:58
阅读次数:
204
1、405 request method post not supported 产生原因:在一个方法单元里面,方法声明POST请求: @RequestMapping(value="/login",?method=RequestMethod.POST) 登录成功之后发起GET请求: response.sendRedirec...
分类:
编程语言 时间:
2015-09-17 17:49:11
阅读次数:
165
Jquery提供的序列化表单方法serialize方法确实方便,但是我在使用的时候发现了一个弊端:当我使用type:“post”进行ajax请求的时候,这个时候参数data:$("#myform").serialize()是这样获取的,请求之后发现还是一个get请求,参数被拼接在了地址后面,并不是实...
分类:
Web程序 时间:
2015-09-17 15:00:58
阅读次数:
206
Ajax与Comet1. Ajax Asynchronous Javascript+xml :能够向服务器请求额外的数据而无需卸载页面。Ajax技术的核心是XMLHttpRequest 对象(简称XHR),由微软引入。Get请求:最常见的请求类型,最常用于向服务器查询某些信息。必要时,可以将查询字符...
分类:
其他好文 时间:
2015-09-16 19:34:50
阅读次数:
173
参考: http://apidocjs.com/ http://blog.csdn.net/xumin198908/article/details/41964159 1)环境准备(前提是已经具备nodejs环境) npm?install?apidoc?-g 2)添加注释 /**
?*?@api?{get}?/?请求APP信...
通过NSURLConnection发送一个HTTP GET请求//send a GET request to server with some params-(void)httpGetWithParams{ NSString *urlString = @"http://chaoyuan.sin...
分类:
移动开发 时间:
2015-09-16 12:45:14
阅读次数:
137
get 请求:cgi-bin/hello_get.py#!C:/python27/python.exe# -*- coding: UTF-8 -*-import cgi, cgitb form = cgi.FieldStorage() first_name = form.getvalue('firs...
分类:
编程语言 时间:
2015-09-16 12:11:57
阅读次数:
236
一、使用HttpURLConnection向服务器发送get请求1、向服务器发送get请求 @Test publicvoid sendSms() throws Exception{ String message="货已发到"; message=URLEncod...
分类:
Web程序 时间:
2015-09-15 11:02:24
阅读次数:
153
1.用到的一些第三方PostTableViewController.m#import "PostTableViewController.h"@interface PostTableViewController ()@property(nonatomic,retain) NSArray *dataAr...
分类:
移动开发 时间:
2015-09-13 21:21:50
阅读次数:
209
1、get请求将参数放在请求地址url的后面2、post请求时将参数放在http请求空白行的后面3、get请求时参数大小有限制4、post请求理论上对参数大小无限制5、post比get安全一些post请求时请求头多个Content-type,值是 application/x-www-form-url...
分类:
其他好文 时间:
2015-09-10 21:14:54
阅读次数:
222