如何在带方法引用表达式(双冒号表达式)的改造 GET 请求中使用默认参数

发布于 2025-01-12 01:12:25 字数 1514 浏览 1 评论 0 原文

现在我重构我的代码。我尝试使用方法引用表达式来改进 Get Rquest 方法。 但不能使用默认参数。 为什么?有人有任何解决方案吗?

// WebServer.kt
interface WebServer{
    @GET("info/list/week")
    fun getWeekTrendingInfo(
        @Query("language") language: String = "en-US",
        @Header("authKey") authKey: String = ${BuildConfig.API_KEY}
    ): Call<InfoDTO>

    @GET("info/list/day")
    fun getDailyTrendingInfo(
        @Query("language") language: String = "en-US",
        @Header("authKey") authKey: String = ${BuildConfig.API_KEY}
    ): Call<InfoDTO>
}
// MainActivity.kt
override fun onCreate(savedInstanceState: Bundle?) {
    ...
    loadTrendingInfos(isWeek)
}

private fun loadTrendingInfos(isWeek: Boolean) {
    webService.run{
        val api = if (isWeek) this::getWeekTrendingInfo else this::getDailyTrendingInfo
        api().enqueue(InfoCallback { _, response -> // ERROR! IDE say No value passed for parameter
            adapter.submitList(response.body().infoList)
        })
    }
}

当我在 mainActivity 的 loadTrendingInfos 函数中调用 api( ) 时(不包括参数。因为我想使用默认参数),IDE 对我说
没有为参数“p1”传递任何值,没有为参数“p2”传递任何值

并且 val api 的类型为 val api: KFunction2>

所以我尝试像这样调用 api( ) (包括参数。不使用默认参数)

api("en-US", "${BuildConfig.API_KEY}").enqueue(InfoCallback  { _, response ->
    adapter.submitList(response.body()?.movieList)
})

它工作!

但我想知道为什么不能使用默认参数? 以及如何使用默认参数这个?

now i refactoring my codes. and i try to use method reference expression to retrofit Get Rquest methods.
but it can't be use default parameter.
why? somebody has any solutions?

// WebServer.kt
interface WebServer{
    @GET("info/list/week")
    fun getWeekTrendingInfo(
        @Query("language") language: String = "en-US",
        @Header("authKey") authKey: String = ${BuildConfig.API_KEY}
    ): Call<InfoDTO>

    @GET("info/list/day")
    fun getDailyTrendingInfo(
        @Query("language") language: String = "en-US",
        @Header("authKey") authKey: String = ${BuildConfig.API_KEY}
    ): Call<InfoDTO>
}
// MainActivity.kt
override fun onCreate(savedInstanceState: Bundle?) {
    ...
    loadTrendingInfos(isWeek)
}

private fun loadTrendingInfos(isWeek: Boolean) {
    webService.run{
        val api = if (isWeek) this::getWeekTrendingInfo else this::getDailyTrendingInfo
        api().enqueue(InfoCallback { _, response -> // ERROR! IDE say No value passed for parameter
            adapter.submitList(response.body().infoList)
        })
    }
}

when i call api( ) in mainActivity's loadTrendingInfos function(not include param. cuz i want use default params), IDE say to me
No value passed for parameter 'p1', No value passed for parameter 'p2'

and val api's type is
val api: KFunction2<String, String, Call<InfoDTO>>

so i try call api( ) like this (include param. not use default param)

api("en-US", "${BuildConfig.API_KEY}").enqueue(InfoCallback  { _, response ->
    adapter.submitList(response.body()?.movieList)
})

it work!

but i want know why can't use default parameter?
and how to use default parameter this one?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文