我希望Map
有一个可拖动标记,用于确定x
和y
字段。
<Fields names={['x', 'y']} component={Map} />
当标记被放到地图上的新位置时,如何告知redux-form新的x
和y
值是什么?
答案 0 :(得分:1)
const renderMap = props => (
<DragDrop
image={props.image}
currentValue={{
x: props.x.input.value,
y: props.y.input.value,
}}
thingsChanged={coords => {
props.x.input.onChange(coords.x);
props.y.input.onChange(coords.y);
}} />
)
<Fields
names={['x', 'y']}
component={renderMap}
image={this.state.image} />