gpt4 book ai didi

java - 当我给出查询时改造 Url 更改

转载 作者:行者123 更新时间:2023-11-29 19:20:47 25 4
gpt4 key购买 nike

嗨, friend 们需要改造方面的帮助,我是使用改造的初学者,请帮助我,我需要这样的 url

http://54.202.3.127/parallel_space/paralleljson.php?action=aboutus&id=1

如果我设置使用

**@GET("paralleljson.php?action={terms}")
Call<Terms_UserGuide_About> termsuserguide(@Path("terms") String terms,@Query("id")String id);**

它给我这个错误

URL 查询字符串“action={terms}/”不能有替换 block 。对于动态查询参数,请使用@Query。

如果我用查询替换路径,那么 url 会像这样改变

@GET("paralleljson.php?action=")
Call<Terms_UserGuide_About> termsuserguide(@Query("terms") String terms,@Query("id")String id);

http://54.202.3.127/parallel_space/paralleljson.php?action=&terms=aboutus&id=1

最佳答案

@GET("paralleljson.php")
Call<Terms_UserGuide_About> termsuserguide(@Query("action") String terms,@Query("id")String id);

它应该可以工作。

关于java - 当我给出查询时改造 Url 更改,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42547617/

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