我有一个js interop函数,它使用for in
构造迭代输入元素,但它在运行时抛出错误。
native("document")
val ndoc: dynamic = noImpl
fun jsInterOp() {
js("console.log('JS inling from kotlin')")
val ies = ndoc.getElementsByTagName("input")
for (e in ies) {
console.log("Input element ID: ${e.id}")
}
}
获取以下js错误
Uncaught TypeError: r.iterator is not a functionKotlin.defineRootPackage.kotlin.Kotlin.definePackage.js.Kotlin.definePackage.iterator_s8jyvl$ @ kotlin.js:2538
有关如何修复此问题的任何建议?
Kotlin:M12
生成的函数的js代码是
jsInterOp: function () {
var tmp$0;
console.log('JS inling from kotlin');
var ies = document.getElementsByTagName('input');
tmp$0 = Kotlin.modules['stdlib'].kotlin.js.iterator_s8jyvl$(ies);
while (tmp$0.hasNext()) {
var e = tmp$0.next();
console.log('Input element ID: ' + e.id);
}
},
答案 0 :(得分:2)
forEach
无效,因为它是JS中的Array
函数,但getElementsByTagName
返回HTMLCollection。所以我改变了kotlin代码,使用传统的for循环,迭代这个集合并按预期工作。
val ies = ndoc.getElementsByTagName("input")
for (i in 0..(ies.length as Int) - 1) {
console.log("InputElement-${i} : ${ies[i].id}")
}
答案 1 :(得分:0)
Kotlin for-loop使用了很多内部魔法。forEach()
在JS上更直接。试试这个:
ies.iterator().forEach { ... }
这似乎是Kotlin M12中的一个错误,因为即使在简单的列表中我也无法进行for循环。
for(i in listOf(1, 2)); // TranslationInternalException
同时强>
我不确定您在此处使用的document
是什么,但您可能喜欢标准API:
import kotlin.browser.document
val ies = document.getElementsByTagName("input")