gpt4 book ai didi

ios - 如何替换URL中的占位符字母?

转载 作者:行者123 更新时间:2023-11-30 13:49:23 25 4
gpt4 key购买 nike

我有我发送请求以获取结果的 URL:

let URL = "https://api.myweb.site/search/\(searchText)"

但是当我的 searchText 包含占位符字母时,我的应用程序崩溃了。顺便说一句,我正在使用 Alamofire。

如何确保我的 URL 安全并避免崩溃?我试过这个:

let escapedString = searchText.stringByAddingPercentEncodingWithAllowedCharacters(NSCharacterSet.URLQueryAllowedCharacterSet())!

但它又崩溃了。我的问题的解决方案是什么?

最佳答案

解决办法是:

let newURL:String = oldURL.stringByAddingPercentEncodingWithAllowedCharacters(NSCharacterSet.URLQueryAllowedCharacterSet())!

关于ios - 如何替换URL中的占位符字母?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34489960/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com