Javascript 输入字段的默认值与占位符

Javascript 输入字段的默认值与占位符,javascript,admin-on-rest,Javascript,Admin On Rest,有没有办法为aor输入字段使用占位符 两者之间的关键区别在于占位符在提交时不会显示为值,而defaultValue会显示为值 aoe输入中是否有占位符的概念?若否,原因为何 有没有办法为aor输入字段使用占位符 是的,有!例如: <ImageInput source="pictures" label="Related pictures" accept="image/*" placeholder={<p>Drop your file here</p>}>

有没有办法为aor输入字段使用占位符

两者之间的关键区别在于占位符在提交时不会显示为值,而defaultValue会显示为值

aoe输入中是否有占位符的概念?若否,原因为何

有没有办法为aor输入字段使用占位符

是的,有!例如:

<ImageInput source="pictures" label="Related pictures" accept="image/*" placeholder={<p>Drop your file here</p>}>
    <ImageField source="src" title="title" />
</ImageInput>



这里是参考:-搜索关键字
占位符

,感谢您的回复,尽管输入字段没有占位符属性。
<Field name="lat" component="input" type="number" placeholder="latitude" />