x-www-form-urlencoded encodeURIComponent
文档里说
对于
POST方法且header['content-type']为application/x-www-form-urlencoded的数据,会将数据转换成 query string (encodeURIComponent(k)=encodeURIComponent(v)&encodeURIComponent(k)=encodeURIComponent(v)...)
那么header[‘content-type’] 为 application/x-www-form-urlencoded;charset=utf-8的时候是否也会调用encodeURIComponent呢?
