背景
- 在項目開發(fā)中,移動原生應用會經(jīng)常嵌入一些H5頁面,根據(jù)不同的業(yè)務場景,可能需要移動端拼接上不同的業(yè)務參數(shù)枫吧。(比如展示一個訂單詳情浦旱,后端返回了一個baseURL,我們需要拼接訂單號九杂,或者是其他的業(yè)務flag)颁湖。那么這個時候端上為了容錯,有些時候會判斷后端返回的URL中的一些特殊符號(
?
例隆、&
甥捺,&&
...),根據(jù)是否有相應的拼接符進行不同的起始拼接镀层。
if ([urlPath rangeOfString:@"?"].location == NSNotFound) {
urlPath = [urlPath stringByAppendingFormat:@"?orderId=%@&type=%lu&lang=%@&cityId=%ld", orderId,type,lang,cityId];
} else {
urlPath = [urlPath stringByAppendingFormat:@"orderId=%@&type=%lu&lang=%@&cityId=%ld", orderId,type,lang,cityId];
}
諸如此類的代碼镰禾,不知道有多少小伙伴踩過坑~
- WebView加載的頁面地址中提取參數(shù)(估計又有很多小伙伴會根據(jù)
&
進行字符串的分割...)
那么這個時候如果使用NSURLComponents進行組合和分解將會事半功倍。
相關知識延伸
在一維數(shù)據(jù)類型中,URI占據(jù)了至高無上的地位吴侦。這里屋休,在單個的,可解析的字符串中备韧,是編碼在計算機上具有劫樟,確實和將要存在的任何信息的位置所必需的每條可想到的信息。
在最基本的形式中织堂,URI
由方案名稱和層次結構部分組成叠艳,帶有可選的查詢和片段:
<scheme name> : <hierarchical part> [ ? <query> ] [ # <fragment> ]
許多協(xié)議(包括HTTP)為層次結構部分中的用戶名,密碼易阳,端口和路徑等信息指定常規(guī)結構:
扎實地掌握網(wǎng)絡編程,做到對URL組件的熟悉附较。
NSURLComponents
NSURLComponents
在iOS 7.0和macOS 10.9中引入的,所以從時間上看已經(jīng)是存在一段時間了闽烙。
要創(chuàng)建NSURLComponents
對象翅睛,您可以使用a String
或an URL
。
正如官方文檔所描述:
If resolvingAgainstBaseURL is true and url is a relative URL, the components of url.absoluteURL are used. If the url string from the URL is malformed, nil is returned.
下面我們就根據(jù)下面的代碼黑竞,進行一個簡單的介紹分析
NSString * urlString = @"http://image.baidu.com/search/index?tn=baiduimage&ps=1&ct=201326592&lm=-1&cl=2&nc=1&ie=utf-8&word=image";
NSURLComponents * urlComponents = [[NSURLComponents alloc]initWithString:urlString];
NSLog(@"urlComponents.host = \n%@",urlComponents.host);//>>image.baidu.com
NSLog(@"urlComponents.scheme = \n%@",urlComponents.scheme);//>>http
NSLog(@"urlComponents.path = \n%@",urlComponents.path);//>>/search/index
NSLog(@"urlComponents.query = \n%@",urlComponents.query);//>>tn=baiduimage&ps=1&ct=201326592&lm=-1&cl=2&nc=1&ie=utf-8&word=image
這個時候大家會不會就有眼前一亮的感覺??
如果在配合下面一句呢
NSLog(@"urlComponents.ququeryItems=%@",urlComponents.queryItems);//>>(
"<NSURLQueryItem 0x6000016fe720> {name = tn, value = baiduimage}",
"<NSURLQueryItem 0x6000016fe740> {name = ps, value = 1}",
"<NSURLQueryItem 0x6000016fe760> {name = ct, value = 201326592}",
"<NSURLQueryItem 0x6000016fe780> {name = lm, value = -1}",
"<NSURLQueryItem 0x6000016fe7a0> {name = cl, value = 2}",
"<NSURLQueryItem 0x6000016fe7c0> {name = nc, value = 1}",
"<NSURLQueryItem 0x6000016fe7e0> {name = ie, value = utf-8}",
"<NSURLQueryItem 0x6000016fe800> {name = word, value = image}"
)
可以看出捕发,為我們提供了一個NSURLQueryItem,各個查詢項的鍵/值對象,這使我們更容易追加查詢參數(shù),或檢查URL是否包含查詢參數(shù)很魂。
按照這個思路扎酷,各位小伙伴,現(xiàn)在是不是可以放飛自我了??遏匆,對已有的URL進行盡情的組合法挨,分解。
拼裝
NSURLQueryItem * item = [[NSURLQueryItem alloc]initWithName:@"imageSize" value:@"1024*1024"];
NSMutableArray * items = [NSMutableArray arrayWithArray:urlComponents.queryItems];
[items addObject:item];
urlComponents.queryItems = [items copy];
NSLog(@"urlComponents.ququeryItems=%@",urlComponents.queryItems);//>>(
"<NSURLQueryItem 0x6000037712a0> {name = tn, value = baiduimage}",
"<NSURLQueryItem 0x6000037712c0> {name = ps, value = 1}",
"<NSURLQueryItem 0x6000037712e0> {name = ct, value = 201326592}",
"<NSURLQueryItem 0x600003771300> {name = lm, value = -1}",
"<NSURLQueryItem 0x600003771320> {name = cl, value = 2}",
"<NSURLQueryItem 0x600003771340> {name = nc, value = 1}",
"<NSURLQueryItem 0x600003771360> {name = ie, value = utf-8}",
"<NSURLQueryItem 0x600003771380> {name = word, value = image}",
"<NSURLQueryItem 0x6000037713a0> {name = imageSize, value = 1024*1024}"
)
再來打印一下urlComponents.query
NSLog(@"urlComponents.query = \n%@",urlComponents.query);//>>tn=baiduimage&ps=1&ct=201326592&lm=-1&cl=2&nc=1&ie=utf-8&word=image&imageSize=1024*1024
簡單而美觀幅聘,所有的辛勤工作都被委托給NSURLComponents
凡纳,我們甚至不用擔心是否使用?
或&
...
分解
如上述代碼,將數(shù)據(jù)遍歷帝蒿,就可以拿到單個的NSURLQueryItem
,此時咱們可以處理 包含荐糜、去重等等操作,現(xiàn)在我們知道NSURLQueryItems
檢查查詢參數(shù)是否存在太容易了葛超。??
現(xiàn)在在回頭看暴氏,現(xiàn)在的處理是不是更加的優(yōu)雅,便于維護绣张,便于擴展了呢答渔。
如果你想更好的運用和深入地了解,可以去apple官方文檔查閱侥涵。