例如:
onCurrentlyExpandedChanged: flickable.DragOverBounds, flickable.contentHeight += itemHeight,console.log(itemHeight)
逗号下划黄色下划线,工具提示会告诉我不要使用逗号表达式。我应该用什么表达式来代替?我可以使用什么表达式?
答案1
改用这个:
onCurrentlyExpandedChanged: {
flickable.DragOverBounds
flickable.contentHeight += itemHeight
console.log(itemHeight)
}