ant-design/components/form/ValueMixin.jsx

25 lines
499 B
React
Raw Normal View History

2015-10-25 11:31:48 +08:00
const ValueMixin = {
setValue(field, e) {
let v = e;
const target = e && e.target;
if (target) {
if ((`${target.nodeName}`).toLowerCase() === 'input' &&
2015-10-25 11:31:48 +08:00
target.type === 'checkbox') {
v = target.checked;
} else {
v = e.target.value;
}
}
const newFormData = {};
newFormData[field] = v;
this.setState({
formData: {
...this.state.formData,
...newFormData,
},
2015-10-25 11:31:48 +08:00
});
},
};
export default ValueMixin;