Scalajs-react:未捕获的 TypeError:无法读取 null 的属性(读取“值”)
Posted
技术标签:
【中文标题】Scalajs-react:未捕获的 TypeError:无法读取 null 的属性(读取“值”)【英文标题】:Scalajs-react: Uncaught TypeError: Cannot read properties of null (reading 'value') 【发布时间】:2021-11-22 20:01:28 【问题描述】:我的 scalajs-react 应用程序有以下代码:
def render(person: Person) =
<.div(
<.p("Welcome!"),
<.form(
<.label("Name:",
<.input(^.`type` := "text", ^.cls := "form-control",
^.value := person.name, ^.onChange ==> updatePersonName
)
))
)
def updatePersonName(event: ReactEventFromInput): Callback =
$.modState(person => person.copy(name = event.target.value))
但我看到错误:
Uncaught TypeError: Cannot read properties of null (reading 'value')
我在这里错过了什么?
【问题讨论】:
【参考方案1】:你已经使用event.extract
文档说:
如果您想以异步方式访问事件属性(例如在
modState(…)
函数中)
因此,您的 updatePersonName
函数应该如下所示:
def updatePersonName(event: ReactEventFromInput): CallbackTo[Unit] =
event.extract(_.target.value)(text =>
$.modState(person => person.copy(name = text))
)
【讨论】:
以上是关于Scalajs-react:未捕获的 TypeError:无法读取 null 的属性(读取“值”)的主要内容,如果未能解决你的问题,请参考以下文章
scalajs-react:如何从状态对象的 Seq 中获得多行文本字段?
TypeError:无法使用“in”运算符在未定义中搜索“$__firebase”
Android视图:未捕获的处理程序:线程主因未捕获的异常而退出
无法从 nextjs 中的 api 获取图像-TypeError:无法读取未定义的属性(读取“地图”)NEXTJS
Bootstrap 设置错误:未捕获 ReferenceError:未定义 jQuery 和未捕获错误:Bootstrap 的 JavaScript 需要 jQuery