HTML文件上传 - 为什么要使用IFrame

时间:2015-11-16 10:02:53

标签: javascript php html iframe

我一直在努力让文件上传在IE8中运行。我只看到解决方案是发布到IFrame。为什么这样做?难道不可能有一个简单的形式,例如

<form action="test.php" method="post" enctype="multipart/form-data">
    Select image to upload:
    <input type="file" name="fileToUpload" id="fileToUpload">
    <input type="submit" value="Upload Image" name="submit">
</form>

直接提交给PHP     

if(isset($_POST["submit"])) {
    $check = getimagesize($_FILES["fileToUpload"]["tmp_name"]);
    if($check !== false) {
        echo "File is an image - " . $check["mime"] . ".";
        $uploadOk = 1;
    } else {
        echo "File is not an image.";
        $uploadOk = 0;
    }
}

为什么需要IFrame?

由于

2 个答案:

答案 0 :(得分:3)

iframe方法非常简单。 基本上你使用iframe上传文件而不是上传主窗口,但你不需要使用iframe。

方法1

这是一个关于这个主题的好教程:http://hungred.com/how-to/tutorial-easiest-asynchronous-upload-file-ajax-upload/

HTML:

<form id="my_form" name="form" action="upload.php" method="POST" 
enctype="multipart/form-data" >

<div id="main">
<input name="my_files" id="my_file" size="27" type="file" />
<input type="button" name="action" value="Upload" onclick="redirect()"/>
<iframe id='my_iframe' name='my_iframe' src="">
</iframe>
</div>    
</form>

JS:

function redirect()
{
//'my_iframe' is the name of the iframe
document.getElementById('my_form').target = 'my_iframe';
document.getElementById('my_form').submit();
}

PHP:

$uploaddir = '/images/';
$uploadfile = $uploaddir . basename($_FILES['my_files']['name']);

if (move_uploaded_file($_FILES['my_files']['my_name'], $uploadfile)) {
echo "success";
} else {
echo "error";
}

<强> 2。 AJAX方法

JS:

function submitForm() {
        var formData = new FormData($('#imageForum')[0]);

            $.ajax({
                url: '/FileUpload',
                type: 'POST',
                data: formData,
                async: false,
                success: function (data) {
                    alert('posted')
                },
                cache: false,
                contentType: false,
                processData: false
            });

            return false;
    }

HTML:

<form id="imageForum" action="javascript:submitForm();" method="post" enctype = "multipart/form-data">
    <div>
        <label for="fileUpload">File upload</label>
        <input type="file" id="fileUpload" name="fileUpload" />
    </div>
</form>

答案 1 :(得分:3)

您不需要iframe上传文件。

您需要一个iframe来上传文件而不离开当前页面(即对于Ajax)。现代浏览器支持FormData,允许您使用XMLHttpRequest上传文件。