URL解析-URLComponents
阿新 • • 發佈:2018-09-13
als element nts string ins cas nbsp ash lse
let components = URLComponents(url: fakeUrl, resolvingAgainstBaseURL: false)!
http://10.100.140.84/m/cashboard/cost/02?yyyyMM=2018-06&tabFlag=02
- scheme : "http"
- host : "10.100.140.84"
- path : "/m/cashboard/cost/02"
? queryItems : 2 elements
? 0 : yyyyMM=2018-06
- name : "yyyyMM"
? value : Optional<String>
- some : "2018-06"
? 1 : tabFlag=02
- name : "tabFlag"
? value : Optional<String>
- some : "02"
http://10.100.140.84/m/cashboard/#/cost/02?yyyyMM=2018-06&tabFlag=02
- scheme : "http"
- host : "10.100.140.84"
- path : "/m/cashboard/"
- fragment : "/cost/02?yyyyMM=2018-06&tabFlag=02"
URL解析-URLComponents