圣杯 1..3.7
在常规控制器操作中,我可以执行以下操作:
def someAction = { OneCommand oneCmd, TwoCommand twoCmd ->
}
但是,在 webflow 操作中,我有等价的:
def someFlow = {
someAction {
on("something") { OneCommand oneCmd, TwoCommand twoCmd ->
}
}
}
它不会将参数绑定到任何一个对象。如果我删除其中一个,它将绑定到左侧。这是错误还是预期行为?