问题描述:
WkWebView、UIWebView的URL中有中文,页面就会加载不出来。
解决办法:
将URL中的中文进行编码即可!
let str = "http://hhhhh.com?phone=\(phone!)&name=\(username!)"
let urlStr = str.addingPercentEncoding(withAllowedCharacters: CharacterSet.urlQueryAllowed)
编码后的结果如下:
urlStr = "http://hhhhh.com?phone=15656119619&name=%E4%BC%9A%E5%91%98%E5%BC%A0%E5%BB%BA%E4%BF%8A"