Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我使用 gradle kotlin 多平台插件在 java 和 js 中构建一些东西
我的问题是在js版本中,函数/类的名称不一致:
在我的 kotlin 中,我定义了一个函数“launch()”,在 js buid 中,它将是“launch12434()”
知道如何纠正吗?
您可以使用@JsName注解为您的方法指定一个特定名称。它看起来像这样;
@JsName
@JsName("launch") fun launch() { }
更多信息在这里。