我想获取20000+个用户的数据并将其存储到MySQL服务器。 当我向Web API发出请求时
POST /web/api/user/info HTTP/1.1
Host: www.example.org
Content-Type: application/x-www-form-urlencoded
Access-Control-Allow-Origin: *
Accept-Encoding: gzip, deflate
Accept-Language: en-US
user_id=1
然后输出为JSON,如下所示:
{
"name": "fname",
"last_name": "lname",
"full_name": "full name",
"blood_group":"o+",
"area":"area_code"
}
有没有简便快捷的方法来完成此任务?