【发布时间】:2020-08-31 07:59:08
【问题描述】:
<SimpleForm
label="resources.xyz"
{...props}
<TextInput
source="latitude"
label="resources.latitude"
defaultValue={
gpsLocation?.capturedLocation?.latitude || props?.record?.latitude
}
value={
gpsLocation?.capturedLocation?.latitude || props?.record?.latitude
}
/>......
在这里,当我们通过单独的函数捕获位置时,gpsLocation?.capturedLocation?.latitude 和 longitude 会发生变化,但是当我们提交表单时 textInput 值不会发生变化。
【问题讨论】:
标签: reactjs react-redux react-admin