我对更改标准var str ="";
for(var i =0; i < obj.length; i++){
if(type of obj[i] === "string")
str += Object.keys(obj)[i] + ': "",\n';
if(type of obj[i] === "integer")
str += Object.keys(obj)[i] + ': 0,\n';
}
标题感到有点困惑:
http post
成:
POST / HTTP/1.1
我正在使用requests
lib for python。
任何帮助将不胜感激
答案 0 :(得分:0)
r = requests.get('https://api.github.com/', auth=('user', 'pass'))
这将设置GET / HTTP/1.1
协议标题
r = requests.get('https://api.github.com/user', auth=('user', 'pass'))
这将设置GET /user HTTP/1.1
协议标题