gpt4 book ai didi

修改相对 URL 的尾部斜杠

转载 作者:行者123 更新时间:2023-12-02 21:58:48 25 4
gpt4 key购买 nike

Retrofit 是否会从端点的相对 URL 中删除尾部斜杠?我尝试在我的一个端点上添加尾部斜杠,但是当我使用调试器单步执行并查看 Call 对象时,如果我钻取到 delete.relativeUrl 它不会显示尾部斜杠.

最佳答案

您需要在基本 URL 端点末尾手动添加斜杠。

假设您有这两个改造实例:

无斜线

Retrofit retrofitNoSlash = new Retrofit.Builder()
.baseUrl("https://example.com/api/v5")
.build();
  • @GET("something"):https://example.com/api/v5something
  • @GET("/something"):https://example.com/something

带斜线

Retrofit retrofitWithSlash = new Retrofit.Builder()
.baseUrl("https://example.com/api/v5/")
.build();
  • @GET("something"):https://example.com/api/v5/something
  • @GET("/something"):https://example.com/something
<小时/>

所以:手动添加尾部斜杠

关于修改相对 URL 的尾部斜杠,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38758570/

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