antd 사용자 정의Form 양식 컨트롤
코드를 복용하기 위해서, Upload 파일 업로드 구성 요소와 같이 업로드 파일 처리 요청의 논리를 패키지로 구성하는 form 폼 컨트롤을 사용자 정의할 때가 있습니다.
getField Decorator 방법으로 감싸는 폼 컨트롤은value(또는valuePropName에서 지정한 속성 이름)와 onChange(또는trigger에서 지정한 속성 이름) 속성을 자동으로 추가하고value는form에서 전송된 값을 수신하며,onChange는 컨트롤의 값을form으로 되돌려줍니다.이 두 속성은 자동으로 추가되기 때문에 사용자 정의 컨트롤에 이 두 속성이 있을 수 없습니다.
Upload 구성 요소를 직접 포장했습니다.
import React from 'react';
import {Upload, Icon, Button} from 'antd';
import PropTypes from 'prop-types';
export default class FileUpload extends React.Component {
constructor(props) {
super(props);
let fileList = [];
if (props.value && props.value.length > 0) {
fileList = this.propToFileList(props.value)
}
this.state = {
fileList: fileList
};
}
componentWillReceiveProps(nextProps) {
let equals = this.equals(nextProps.value, this.state.fileList);
// form value
if ('value' in nextProps && !equals) {
this.setState({
fileList: this.propToFileList(nextProps.value)
});
}
}
equals(value, fileList) {
const fileListValue = this.fileListToForm(fileList);
if ((value === '' || value === undefined) && fileListValue.length == 0) {
return true;
}
if (Array.isArray(value) && Array.isArray(fileListValue) && value.length === fileListValue.length) {
for (let index of value.keys()) {
let first = value[index];
let second = fileListValue[index];
if ((first.filename !== second.filename) || (first.publicKey !== second.publicKey)) {
return false;
}
}
return true;
}
return false;
}
handleChange = (info) => {
let fileList = info.fileList;
fileList = fileList.map((file) => {
if (file.response) {
let publickey = file.response.publicKey;
if (publickey) {
file.url = `/api/attachments/${publickey}`;
}
}
return file;
});
this.setState({fileList});
if (info.file.status === 'done' || info.file.status === 'removed') {
// onChange form
let {onChange} = this.props;
if (onChange) {
let formValue = this.fileListToForm(fileList);
onChange(formValue);
}
}
};
//
fileListToForm(fileList) {
let formValue = [];
fileList.forEach(item => {
if (item.status === 'done') {
let publicKey = item.url.slice(item.url.lastIndexOf('/') + 1);
formValue.push({
filename: item.name,
publicKey
});
}
});
return formValue;
}
//
propToFileList(value) {
const fileList = [];
if (value && Array.isArray(value)) {
value.forEach((item, index) => {
fileList.push({
uid: index,
name: item.filename,
status: 'done',
url: `/api/attachments/${item.publicKey}`
});
});
}
return fileList;
}
render() {
let multiple = true;
if (this.props.multiple === false) {
multiple = false;
}
const props = {
action: '/api/attachments',
onChange: this.handleChange,
multiple: multiple,
};
return (
);
}
}
FileUpload.propTypes = {
value: PropTypes.any,
onChange: PropTypes.func,
multiple: PropTypes.bool
};
기본 컨트롤처럼 사용
{getFieldDecorator('attachments')(
)}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
다양한 언어의 JSONJSON은 Javascript 표기법을 사용하여 데이터 구조를 레이아웃하는 데이터 형식입니다. 그러나 Javascript가 코드에서 이러한 구조를 나타낼 수 있는 유일한 언어는 아닙니다. 저는 일반적으로 '객체'{}...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.