http://www.nginx.cn/nginx-downloadnginx.conf配置if ($request_method = ‘OPTIONS’) { add_header Access-Control-Allow-Origin *; add_header Access-Control-A...
分类:
其他好文 时间:
2016-01-20 19:21:30
阅读次数:
214
如何发送数据和加入多个header字段request=urllib2.Request(url)
request.add_header("Content-Type","application/json;charset=UTF-8")
request.add_header("User-Agent","user_agent")
data={‘name‘:‘aaa‘,‘location‘:‘bbb‘}
post_data=urllib.urlencode(data)
response=u..
分类:
编程语言 时间:
2016-01-05 01:36:26
阅读次数:
207
nginx在配置文件nginx.conf中可以使用很多内置变量,配置如下: location /info { add_header 'Content-Type' 'text/html'; echo "http_user_agent ...
分类:
其他好文 时间:
2015-12-17 19:14:37
阅读次数:
559
1.禁用php的nginx缓存 location ~ .*\.(css|js|swf|php|htm|html )$ { add_header Cache-Control no-store; }2.禁用php缓存[opcache]; Determines ...
分类:
Web程序 时间:
2015-11-20 06:57:52
阅读次数:
265
vi /etc/nginx/nginx.conf加入如下代码http { ###start#### add_header Access-Control-Allow-Origin *; add_header Access-Control-Allow-Headers X-Requested-With; ...
分类:
其他好文 时间:
2015-10-28 20:57:00
阅读次数:
174
import urllib.requestimport osdef url_open(url): req = urllib.request.Request(url) req.add_header('User-Agent', 'Mozilla/5.0 (Windows NT 6.2; WO...
分类:
其他好文 时间:
2015-10-24 08:57:29
阅读次数:
186
前端要在本地测试ajax接口,无法跨域访问,所以在测试环境的nginx配置了跨域支持,方法如下:在nginx.conf文件, http块下配置 42 #support cross domain access 43 add_header Access-Control-Allow-Ori...
分类:
其他好文 时间:
2015-08-11 11:47:16
阅读次数:
129
最近做listview增加头的时候出现的这个问题,简单说一下,我用的是4.4.4的测试机,完全没事
需求是:addheader是一个轮播图,是动态从后台获取的,如果没有就不显示,放在4.4.4的环境下测试的是先去判断从服务器取得的数据,然后再决定是否去添加头
但是4.4以下貌似不可以这么干,程序会崩溃,给出这样的提示,意思就是你必须在setadapter之前就去增加头,不然的话就会崩,可是现在...
分类:
编程语言 时间:
2015-08-10 12:11:58
阅读次数:
166
import urllib2from StringIO import StringIOimport gzip def loadData(url): request = urllib2.Request(url) request.add_header('Accept-encoding', '...
分类:
其他好文 时间:
2015-08-07 07:04:26
阅读次数:
233
在nginx.conf中配置http { ...... add_header Access-Control-Allow-Origin *; add_header Access-Control-Allow-Headers X-Requested-With; add_header Access-...
分类:
其他好文 时间:
2015-08-03 16:21:22
阅读次数:
131