console.log(event.target['test'].value)
(данный пример от Вадим)<form onSubmit={
(event) => {
event.preventDefault()
console.log(inputCityValue)
}
}>
<Input value={inputCityValue} onChange={onChangeHandlerWrapper(setInputCityValue)}/>
<button type='submit'><span>Обновить данные</span></button>
</form>
+1 вариант
const input = useRef(null)
...
function successSubmit() {
input.current.value = ""
}
...
<Input ref={input } />
+2 вариант через state
const [state, setState] = useState({
inputValue: ''
})
...
function successSubmit() {
setState(prevState => {
return {
...prevState,
inputValue: ''
}
})
}
...
<Input
value={state.inputValue}
onInput={e => {
setState(prevState => {
return {
...prevState,
inputValue: e.target.value
}
})
}}/>
+3 Вариант изощренный - "до лучших времен"
function successSubmit() {
document.querySelectorAll('input').forEach(i => i.value = '')
}
RewriteCond %{THE_REQUEST} //
RewriteRule ^.*$ $0 [R=302,L,NE]
<div class="for_pc d-none d-lg-block"></div>
<div class="for_mobile d-none d-sm-block"></div>
dishIdQuantityMap[x]
<script>console.log('Page loaded');</script>