sri & scala-react/scala-jsを使用して反応コンポーネントのクリックハンドラを作成しようとしています。sri/scala-reactを使用してクリックコールバックを作成するにはどうすればよいですか?
次のコードでは、onClick
ハンドラを解決できません。私はそれが型の注釈か何かをとると思うが、私は例からそれをコピーした(tick
を検索するとpage)。ここで
は私のコードです:
package demo.web.screens
import org.scalajs.dom
import demo.web.styles.GlobalStyle
import shared.contactform.ContactForm
import sri.core._
import sri.scalacss.Defaults._
import sri.web.all._
import sri.web.vdom.htmltags._
import scala.scalajs.js
import scala.scalajs.js.annotation.ScalaJSDefined
object ContactScreen {
@ScalaJSDefined
class Component extends ReactComponent[Unit, Unit] {
var bodyRef: dom.html.Input
var nameRef: dom.html.Input
var emailRef: dom.html.Input
def handleClick(e: ReactMouseEventI) = {
Option(bodyRef).foreach { body =>
val form = ContactForm(body = body.value,
name = Option(nameRef).map(_.value),
email = Option(emailRef).map(_.value))
println(s"Inside click handler with form: $form")
}
}
def render() = {
dom.console.log("In contact screen")
val contactForm = ContactForm(body = "static body", name = None, email = None)
println(s"contact form = $contactForm")
form()(
div(className = GlobalStyle.flexOneAndCenter)(
span(className = GlobalStyle.bigText)("Contact us"),
label()("Your name",
input(id = "name", ref = (e: dom.html.Input) => nameRef = e)),
label()("Your email address",
input(`type`="email", id = "email",
ref = (e: dom.html.Input) => emailRef = e)),
label()("Comments",
textarea(id = "body", ref = (e: dom.html.Input) => bodyRef = e)()),
button(id = "submit", onClick = handleClick _)("Submit")
)
)
}
}
val constructor = getTypedConstructor(js.constructorOf[Component], classOf[Component])
def apply(key: js.UndefOr[String] = js.undefined,
ref: js.Function1[Component, _] = null) = {
createElementNoProps(constructor, key = key, ref = ref)
}
}
もっと焦点を絞ったコードスニペットを投稿してください。エラーが2行で簡単に再現できる場合には、約60行を投稿しました。 – nafg
正確なエラーメッセージを含めてください。 "解決できない"ということはあまり明確ではない。 – nafg
「sri&scala-react/scala-js」 - ここでは「scala-react」と呼ばれる別のものはありませんが、scala-js-reactというライブラリがあり、これはSriの代わりに – nafg