我目前正在设计一个网络应用程序,我希望从提交表格中获取一个价值,但获得一种类型的不匹配:
类型不匹配;发现:连接。 选择要求:(a) =>
我的法典认为:
var value=0
"name=value" #> SHtml.onSubmit(s => asInt(s).foreach(value= _)) &
// when the form is submitted, process the variable
"type=submit" #> SHtml.onSubmitUnit(askForHumanMove)
以及我对人类提出的要求 循环方法:
def askForHumanMove(board: connectfour.Board): Option[Int] = {
Some(value)
}
希望有些人能够帮助我处理这种不匹配问题。
谢谢!
Best regards, John