我有一个 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
.
我已经研究过删除工件,但没有找到解决方案。