Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

334
Views
El tipo 'cadena' no se puede asignar al tipo 'UploadFileStatus | indefinido'
 import React, { useState } from 'react'; import { Upload } from 'antd'; import ImgCrop from 'antd-img-crop'; interface uploadProps{ fileList:string; } const UploadD:React.FC <uploadProps> = () => { const [fileList, setFileList] = useState([ { uid: '-1', name: 'image.png', status: 'done', url: 'https://zos.alipayobjects.com/rmsportal/jkjgkEfvpUPVyRjUImniVslZfWPnJuuZ.png', }, ]); const onChange = ({ fileList: newFileList }) => { setFileList(newFileList); }; const onPreview = async file => { let src = file.url; if (!src) { src = await new Promise(resolve => { const reader = new FileReader(); reader.readAsDataURL(file.originFileObj); reader.onload = () => resolve(reader.result); }); } const image = new Image(); image.src = src; const imgWindow = window.open(src); imgWindow!.document.write(image.outerHTML); }; return ( <ImgCrop rotate> <Upload action="https://www.mocky.io/v2/5cc8019d300000980a055e76" listType="picture-card" fileList={fileList}//this error:Type 'string' cannot be assigned to type 'UploadFileStatus | undefined'. onChange={onChange} onPreview={onPreview} > {fileList.length < 5 && '+ Upload'} </Upload> </ImgCrop> ); }; export default UploadD

ERROR

 Type '{ uid: string; name: string; status: string; url: string; }[]' cannot be assigned to type 'UploadFile<any>[]'. Type '{ uid: string; name: string; status: string; url: string; }' cannot be assigned to type 'UploadFile<any>'. The types of property 'status' are incompatible. Type 'string' cannot be assigned to type 'UploadFileStatus | undefined'. ts(2322) interface.d.ts(70, 5): Required type from property "fileList", on type "IntrinsicAttributes & UploadProps<any> & { children?: ReactNode; } & RefAttributes<any>" here
about 4 years ago · Juan Pablo Isaza
1 answers
Answer question

0

Creo que porque está asignando string a UploadFileStatus | undefined UploadFileStatus puede ser uno de error | success | done | uploading | removed

Intenta usar la afirmación de tipo :

 const [fileList, setFileList] = useState([ { uid: '-1', name: 'image.png', status: 'done' as UploadFileStatus, url: 'https://zos.alipayobjects.com/rmsportal/jkjgkEfvpUPVyRjUImniVslZfWPnJuuZ.png', }, ]);
about 4 years ago · Juan Pablo Isaza Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!