Gradle 项目由 JS 插件设置:
plugins {
kotlin("js") version("1.6.10")
}
并使用LEGACY
编译后端:
kotlin {
js(LEGACY) {
// ...
}
}
我的目标是在 Kotlin 源代码中使用以下依赖项:
dependencies {
implementation(npm("i18next", "21.6.11"))
implementation(npm("react-i18next", "11.15.4"))
implementation(npm("i18next-browser-languagedetector", "6.1.3"))
}
描述前两个依赖项的 JS-Kotlin 桥接非常容易:
@JsModule("i18next")
@JsNonModule
external val i18next: I18n
external interface I18n {
fun use(module: dynamic): I18n
}
@JsModule("react-i18next")
@JsNonModule
external val reactI18next: ReactI18next
external interface ReactI18next {
val initReactI18next: dynamic
}
不幸的是,最后一个——i18next-browser-languagedetector
它的配置让我有些抓狂。像这样的东西:
@JsModule("i18next-browser-languagedetector")
@JsNonModule
external val LanguageDetector: dynamic
不起作用 - 上述LanguageDetector
声明提供的实际值是{}
,因此i18next
不在 Kotlin 代码中使用它(JS 代码 throws You are passing a wrong module! Please check the object you are passing to i18next.use()
):
i18next.use(LanguageDetector) // fails
任何人都可以帮我声明一个 JS-Kotlin 桥LanguageDetector
吗?