загрузчик нескольких файлов в форме реагирования - PullRequest
0 голосов
/ 23 января 2019

У меня есть список элементов в базе данных, и я хочу отобразить его в таблице, и я добавлю тип ввода = файл для каждого файла, чтобы загрузить файл для каждого элемента на дескрипторе. Я хочу отправить имя элемента для обработки функции, но я не смог 't, чтобы сделать его более понятным, я хочу отправить значение item.documentname в функцию file1MadChangedHandler, каждый раз, когда я нажимаю

   {this.props.Organizations.listDocs 
    ? 
    <div>
       { this.props.Organizations.listDocs.map(function (item, index) {
          return(
                <tr key={item.documentName}>
                    {item.documentName}
                        <td>
                        <td>
                            <input component="input"
                                type="file"
                                id="{item.documentName}"
                                onChange={(event,item)=> { 
                                    this.file1MadChangedHandler(event,item) }}
                                // onChange={this.file1MadChangedHandler}
                                ref={fileInput => ref.fileInput = fileInput}
                                style={{ display: "None" }}
                            />
                            <button onClick={(item) => this.fileInput.click(item.documentName)}>Pick File</button>             
                        </td>
                </tr>
            )

        })
                }
    </div> 
    : 
    ""
}

1 Ответ

0 голосов
/ 25 января 2019

Со входами из вашего repl.it / repls / MutedFunnyBlog кода.

Чтобы получить имя файла загруженного элемента, вам нужно немного изменить данные, как показано ниже:

data: [
      { id: 1, name: "Copy of Applicant's Identification Card / Passport", "file": "" },
      { id: 2, name: "Copy of Business Registration Certificate (eg. SSM)", "file": "" },
      { id: 3, name: "Copy of Business Registration File 1", "file": "" },
      { id: 4, name: "Copy of Business Registration File 2", "file": "" }
    ]  //added file

затем визуализируйте каждую строку, как показано ниже:

   data.map((item, index) => {
    return(
      <tr key={`${this.state.inputkey}${item.id}`}>
        <td width="100">{item.id}</td>
        <td width="300">{item.name}</td>
        <td width="200">{item.file}</td> /* your third column */
        <td>
        <input 
          key={this.state.inputkey} /*unique key */
          type="file" 
          id={item.id} /*unique id cus every row should have unique input file type*/
          className="inputfile"
          onInput ={(e) => this.handleChange(e,item.id)} 
          data-name={item.id} />
        <label htmlFor ={item.id} > /* unique id for file upload*/
          <figure>
            <svg xmlns="http://www.w3.org/2000/svg" width="20" height="17" viewBox="0 0 20 17"><path d="M10 0l-5.2 4.9h3.3v5.1h3.8v-5.1h3.3l-5.2-4.9zm9.3 11.5l-3.2-2.1h-2l3.4 2.6h-3.5c-.1 0-.2.1-.2.1l-.8 2.3h-6l-.8-2.2c-.1-.1-.1-.2-.2-.2h-3.6l3.4-2.6h-2l-3.2 2.1c-.4.3-.7 1-.6 1.5l.6 3.1c.1.5.7.9 1.2.9h16.3c.6 0 1.1-.4 1.3-.9l.6-3.1c.1-.5-.2-1.2-.7-1.5z"/>
            </svg>
          </figure> 
        </label>           
        </td>
      </tr>
    );
});

и в событии handleChange:

 handleChange(event, i) {
      const newData = this.state.data.map(item => ({...item}) ); //copy state.data to new data
      newData.map(item => item.file = i === item.id ? event.target.files[0].name: item.file);  //set file based on uploaded file in each row
      this.setState({ 
          data: newData, 
          inputkey: Math.random().toString(36) //set new unique key here
        }, () =>  console.log(this.state.data));
  }

Демонстрация , надеюсь, это решит ваши проблемы.

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...