URL解析-URLComponents

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"

posted @ 2018-09-13 18:15  zzfx  阅读(1145)  评论(0编辑  收藏  举报