导入下面这个cURL时参数没有正确解析,都成一堆放到了raw里面。
curl 'http://aaaa/ypsczljgxt_zyypjg/statistics.do?action=statistic' \
-H 'Content-Type: application/x-www-form-urlencoded; charset=UTF-8' \
--data-raw 'page=1&rp=10&areaCode=440000&sjsbsjStartTime=&sjsbsjEndTime=&all=true' \
--compressed \
--insecure
删除;charset=UTF-8后导入解析正常
curl 'http://aaaa/ypsczljgxt_zyypjg/statistics.do?action=statistic' \
-H 'Content-Type: application/x-www-form-urlencoded' \
--data-raw 'page=1&rp=10&areaCode=440000&sjsbsjStartTime=&sjsbsjEndTime=&all=true' \
--compressed \
--insecure
本身这个格式就是raw格式 导入肯定会是raw 我先记录下