gpt4 book ai didi

javascript - 无法从文件 uploader 获取文件信息

转载 作者:行者123 更新时间:2023-11-28 05:42:33 26 4
gpt4 key购买 nike

我有一个文件 uploader (HTML/CSS/Jquery),我们称它为 uploader_1,另一个只有 (HTML, PHP),uploader_2。我正在尝试通过 uploader_1 将所有文件上传到我的表单末尾。出于某种原因,在调整代码和所有内容后,在我的验证 php 文件中,我能够获得 $_FILES 以及来自 uploader_2 的所有信息,但是,没有来自uploader_1 出现,既不在 $_FILES 中也不在 $_POST 中。

Uploader_1

HTML

<section class="col col-sm-5 rui" id="mupload5">
<label class="label" for="file5">
<b>Example</b>
<p>Description</p>
</label>
<div class="file-uploader__message-area">
<p>Select a file</p>
</div>
<div class="file-chooser">
<input type="file" class="file-chooser__input" id="file5">
</div>
<?php
listPdf($id, 5);
?>
</section>

查询

 //jQuery plugin
(function( $ ) {

$.fn.uploader = function( options ) {
var settings = $.extend({
MessageAreaText: "There is no file selected.",
MessageAreaTextWithFiles: "File list:",
DefaultErrorMessage: "Failed opening file.",
BadTypeErrorMessage: "Invalid type of file.",
acceptedFileTypes: ['pdf', 'jpg', 'gif', 'jpeg', 'bmp', 'tif', 'tiff', 'png', 'xps', 'doc', 'docx',
'fax', 'wmp', 'ico', 'txt', 'cs', 'rtf', 'xls', 'xlsx']
}, options );

var uploadId = 1;
//update the messaging
$('.file-uploader__message-area p').text(options.MessageAreaText || settings.MessageAreaText);

//create and add the file list and the hidden input list
var fileList = $('<ul class="file-list"></ul>');
var hiddenInputs = $('<div class="hidden-inputs hidden"></div>');
$('.file-uploader__message-area').after(fileList);
$('.file-list').after(hiddenInputs);

//when choosing a file, add the name to the list and copy the file input into the hidden inputs
$('.file-chooser__input').on('change', function(){
var file = $('.file-chooser__input').val();
var fileName = (file.match(/([^\\\/]+)$/)[0]);

//clear any error condition
$('.file-chooser').removeClass('error');
$('.error-message').remove();

//validate the file
var check = checkFile(fileName);
if(check === "valid") {

// move the 'real' one to hidden list
$('.hidden-inputs').append($('.file-chooser__input'));

//insert a clone after the hiddens (copy the event handlers too)
$('.file-chooser').append($('.file-chooser__input').clone({ withDataAndEvents: true}));

//add the name and a remove button to the file-list
$('.file-list').append('<li style="display: none;"><span class="file-list__name">' + fileName + '</span><button class="removal-button" data-uploadid="'+ uploadId +'"></button></li>');
$('.file-list').find("li:last").show(800);

//removal button handler
$('.removal-button').on('click', function(e){
e.preventDefault();

//remove the corresponding hidden input
$('.hidden-inputs input[data-uploadid="'+ $(this).data('uploadid') +'"]').remove();

//remove the name from file-list that corresponds to the button clicked
$(this).parent().hide("puff").delay(10).queue(function(){$(this).remove();});

//if the list is now empty, change the text back
if($('.file-list li').length === 0) {
$('.file-uploader__message-area').text(options.MessageAreaText || settings.MessageAreaText);
}
});

//so the event handler works on the new "real" one
$('.hidden-inputs .file-chooser__input').removeClass('file-chooser__input').attr('data-uploadId', uploadId);

//update the message area
$('.file-uploader__message-area').text(options.MessageAreaTextWithFiles || settings.MessageAreaTextWithFiles);

uploadId++;

} else {
//indicate that the file is not ok
$('.file-chooser').addClass("error");
var errorText = options.DefaultErrorMessage || settings.DefaultErrorMessage;

if(check === "badFileName") {
errorText = options.BadTypeErrorMessage || settings.BadTypeErrorMessage;
}

$('.file-chooser__input').after('<p class="error-message">'+ errorText +'</p>');
}
});

var checkFile = function(fileName) {
var accepted = "invalid",
acceptedFileTypes = this.acceptedFileTypes || settings.acceptedFileTypes,
regex;

for ( var i = 0; i < acceptedFileTypes.length; i++ ) {
regex = new RegExp("\\." + acceptedFileTypes[i] + "$", "i");

if ( regex.test(fileName) ) {
accepted = "valid";
break;
} else {
accepted = "badFileName";
}
}

return accepted;
};
};
}( jQuery ));

//init

$(document).ready(function(){
$('.fileUploader').uploader({
MessageAreaText: "Select a file."
});
});

Uploader_2

HTML

<section class="col col-sm-5 rui">
<label class="label" for="file6"><b>IPO e/ou Documentos Técnicos</b></label>
<div class="upload-control">
<input type="file" class="input-sm " name="file6" id="file6" style="height: 34px;" <?= $d; ?> />
<button type="button" class="btn btn-labeled btn-danger force-auto-width add" aria-label="Left Align" id="deleteipo" >
<span class="fa fa-trash" aria-hidden="true"></span>
</button>
<?php
listPdf($id, 6);
?>
</section>

现在我想在 PHP 中获取文件信息,这是我的提交 url..

PHP

print_r($_FILES);
echo 'HEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEERE'.$_FILES['file5'];
die();

if ( $_FILES['file2']['size'] == 0 )
{
$errors[12] = "Insert file 2";
}else{
unset($errors[12]);
}

if ($_POST['waranty'] == 7 and $_FILES['file3']['size'] == 0)
{
$errors[13] = "Insert file 3";
}else{
unset($errors[13]);
}

if ( $_FILES['file1']['size']['0'] == 0)
{
$errors[14] = "Insert file 1";
}else{
unset($errors[14]);
}

print_recho 中,无论我在 Uploader_1 中放入什么,它都没有显示...发生了什么事?我能做些什么?一直试图通过多种方式获得它...

Uploader_1 Template Codepen

PRINT_R 返回:

    Array ( 
[file2] => Array ( [name] => [type] => [tmp_name] => [error] => 4 [size] => 0 )
[file3] => Array ( [name] => [type] => [tmp_name] => [error] => 4 [size] => 0 )
[file1] => Array ( [name] => Array ( [0] => ) [type] => Array ( [0] => )[tmp_name] => Array ( [0] => ) [error] => Array ( [0] => 4 ) [size] => Array ( [0] => 0 ) )
[file4] => Array ( [name] => Array ( [0] => ) [type] => Array ( [0] => ) [tmp_name] => Array ( [0] => ) [error] => Array ( [0] => 4 ) [size] => Array ( [0] => 0 ) )
[file6] => Array ( [name] => 17.png [type] => image/png [tmp_name] => /tmp/phpHJGS6F [error] => 0 [size] => 7014 ) ) HEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEERE

最佳答案

所以我得到了更新。我设法将文件获取到 $_FILES 中。所以我现在可以使用新的上传(上传 1)来做我需要做的事情。但是我现在有一个新问题。我有 6 个部分需要上传文件,不同的文件。我可以有 1 个 100% 的工作,但有第二个会毁了一切。你可以看到这个代码笔上的演示。

1 个上传部分:http://codepen.io/heavenkinder/pen/BzzPrX

2 个上传部分:http://codepen.io/heavenkinder/pen/XKKBBa

插入 1 个文件后,无论在哪里,一切都停止工作,或者工作不正常。我不知道为什么,我一直在尝试将两个文件输入分开,但具有相同的文件输入,比如说模板。我应该分开javascript吗?为 HTML 中的输入赋予不同的名称并为每个输入设置 javascript?

关于javascript - 无法从文件 uploader 获取文件信息,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37794804/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com