我有一个链接。
在该链接中,我将发送电话号码。
为此,我使用:-
代码:-
var urlString:String = ("https://example.com/destination=12345678").addingPercentEncoding(withAllowedCharacters: .urlFragmentAllowed)!
let url : URL = URL(string: urlString)!
let request: URLRequest = URLRequest(url:url)
let config = URLSessionConfiguration.default
let session = URLSession(configuration: config)
let task = session.dataTask(with: request) { (data, response, error) in
print(error)
print(response)
print(data)
if(error != nil){
print(error?.localizedDescription ?? "")
}
else{
do{
let jsonDict:NSDictionary = try JSONSerialization.jsonObject(with: data!, options: .mutableContainers) as! NSDictionary
}
catch{
print(error.localizedDescription)
}
}
};
task.resume()
}
和链接的输出,如示例:-123456789(仅显示数字)
当我给我链接时,它没有显示响应。它没有进入任务循环。该怎么办? 如何实现它。