evt.target总是returns输入列表的第一个输入
evt.target always returns the first input of the input list
我有一个 React 文件上传器,它允许用户附加多个文件附件。每当用户单击输入时,我都会阅读 data-index
以检查输入的位置。
renderFileUploader() {
let file_attachment = this.state.file_attachment.map(function (b, i) {
console.log("Checking the value of i in here");
console.log(i); /// Shows expected values (0..x)
return (
<li key={i}>
<div className="attach-file-input">
<div className={b[3]}>
<label htmlFor="file_attachment"><i className={b[4]}></i></label>
<input type="file" name="file_attachment" data-index={i} data-type="file_attachment" id="file_attachment" onChange={this.upload.bind(this)} />
<p>{b[2]}</p>
</div>
<div><a href="#" onClick={this.updateList} data-type="file_attachment" data-index={i} data-delete="true" className="remove-icon">×</a></div>
<span className="uploaded-alert">{b[1]}</span>
</div>
</li>
)
}.bind(this));
return(
<div className="form-group file-attachment-area">
<ul className="add-files">{file_attachment}</ul>
<a onClick={this.updateList} data-type="file_attachment" className="text-right add-attachment">+</a>
</div>
);
}
但是当我上传文档并调用 upload
函数时,它始终将索引值设为 0
,因此不断更新第一个位置的元素。
upload(evt, i) {
evt.preventDefault();
console.log(evt.target); // Console log to check position
....
}
选择任何元素后,我的控制台日志会打印以下内容:
<input type="file" name="file_attachment" data-index="0" data-type="file_attachment" id="file_attachment">
所以数据索引总是0
编辑:更正代码
<label htmlFor={"file_attachment" + [i]}><i className={b[4]}></i></label>
<input type="file" name="file_attachment" data-index={i} data-type="file_attachment" id={"file_attachment" + [i]} onChange={this.upload.bind(this)} />
可能给您带来问题的一件事是,您似乎将每个元素的 id 值设置为相同的值,并且 ID 值必须是唯一的。
(您指出这是更改您的 ID 值的解决方案,因此您可以 select 作为答案,@anonn023432。)
我有一个 React 文件上传器,它允许用户附加多个文件附件。每当用户单击输入时,我都会阅读 data-index
以检查输入的位置。
renderFileUploader() {
let file_attachment = this.state.file_attachment.map(function (b, i) {
console.log("Checking the value of i in here");
console.log(i); /// Shows expected values (0..x)
return (
<li key={i}>
<div className="attach-file-input">
<div className={b[3]}>
<label htmlFor="file_attachment"><i className={b[4]}></i></label>
<input type="file" name="file_attachment" data-index={i} data-type="file_attachment" id="file_attachment" onChange={this.upload.bind(this)} />
<p>{b[2]}</p>
</div>
<div><a href="#" onClick={this.updateList} data-type="file_attachment" data-index={i} data-delete="true" className="remove-icon">×</a></div>
<span className="uploaded-alert">{b[1]}</span>
</div>
</li>
)
}.bind(this));
return(
<div className="form-group file-attachment-area">
<ul className="add-files">{file_attachment}</ul>
<a onClick={this.updateList} data-type="file_attachment" className="text-right add-attachment">+</a>
</div>
);
}
但是当我上传文档并调用 upload
函数时,它始终将索引值设为 0
,因此不断更新第一个位置的元素。
upload(evt, i) {
evt.preventDefault();
console.log(evt.target); // Console log to check position
....
}
选择任何元素后,我的控制台日志会打印以下内容:
<input type="file" name="file_attachment" data-index="0" data-type="file_attachment" id="file_attachment">
所以数据索引总是0
编辑:更正代码
<label htmlFor={"file_attachment" + [i]}><i className={b[4]}></i></label>
<input type="file" name="file_attachment" data-index={i} data-type="file_attachment" id={"file_attachment" + [i]} onChange={this.upload.bind(this)} />
可能给您带来问题的一件事是,您似乎将每个元素的 id 值设置为相同的值,并且 ID 值必须是唯一的。
(您指出这是更改您的 ID 值的解决方案,因此您可以 select 作为答案,@anonn023432。)