-1

我有一个 url,我在其中添加 URL 组件以形成查询字符串。例如 url 是https://example.com/test,并且使用 url 组件最终的 url 是https://example.com/test?urlcomponent1=1&urlcomponent2=1234

我需要使用 urlcomponents 保留最终 url,但我需要删除 ?。我怎么做?所以最终的 url 将是https://example.com/testurlcomponent1=1&urlcomponent2=1234.

我已经研究过删除工件,但没有找到解决方案。

4

1 回答 1

1

如果你知道你只有一个?在您的网址中,您可以使用 replaceOccurrencesOf 将其删除

let newURL = URL(string: url.absoluteString.replacingOccurrences(of: "?", with: ""))
于 2019-09-27T17:58:10.750 回答