Coder Social home page Coder Social logo

Comments (4)

wanliyunyan avatar wanliyunyan commented on August 13, 2024 1

@audiolion thank you!I know what I should do.

 onFiles={files => {
     const {name,size} = files[0];
     // check size
     const isLt2M = size / 1024 / 1024 < 2;
     if (!isLt2M) {
      //
       }
     // check extension name
     const index = name.lastIndexOf('.');   
         if(index===-1){
             //
          }else if(index>-1){
               //
            }
       // upload
        onFiles(files)
 }}

from cj-upload.

audiolion avatar audiolion commented on August 13, 2024

尝试使用 accept prop:

uploadProps={{
  accept: '.pdf,.doc,.docx,.txt,.rtf',
}}

from cj-upload.

wanliyunyan avatar wanliyunyan commented on August 13, 2024

@audiolion if i want to change
image this option,that you said do not solve the problem fundamentally, and if i want to limit size of the file, how to do?

from cj-upload.

audiolion avatar audiolion commented on August 13, 2024

if you want to limit the size of the file, you can check it before you upload using the File API

<UploadField
    onFiles={files => {
      if(files[0].size > 30000) this.setState({ sizeError: true});
    }}
/>

from cj-upload.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.