我被困了!! :(我想上传带有标题和标题的图像文件,我想使用javascript验证标题标题和文件选择.
我的HTML在这里:
<input type="text" name="title2" id="title2" value="title" /><br />
<textarea cols="50" rows="10" name="caption" >caption goes here...</textarea><br />
<input type="file" name="photo" id="photo" /><br />
<button id="submit_info" onclick="photowcap()" >post</button><br />
Run Code Online (Sandbox Code Playgroud)
和我的javascript在这里:
function photowcap()
{
var title = document.getElementsByName("title2")[0].value;
var photo = document.getElementsByName("photo")[0].value;
var captions = document.getElementsByName("caption")[0].value;
var caption = encodeURIComponent(captions)
var xmlhttp;
if(title == "" || title == " " || title == "title")
{
document.getElementsByName("title2")[0].focus();
document.getElementsByName("title2")[0].value="";
return;
}
else if(captions == "" || captions == " " || captions == "caption goes here..."){
document.getElementsByName("caption")[0].focus();
document.getElementsByName("caption")[0].value="";
return;
}
else if(photo == ""){
alert("please choose image");
}
else{
if (window.XMLHttpRequest)
{
xmlhttp=new XMLHttpRequest();
}
else
{
xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
}
xmlhttp.onreadystatechange=function()
{
if (xmlhttp.readyState==4 && xmlhttp.status==200)
{
alert("Success!!!");
}
}
xmlhttp.open("GET","photowcap.php? title="+title+"&caption="+caption+"&photo="+photo,true);
xmlhttp.send();}
}
Run Code Online (Sandbox Code Playgroud)
并使用PHP保存它:
<?php
include("admin_conn.php");
$title = $_GET["title"];
$caption = $_GET["caption"];
$photo = $_GET["photo"];
$time=time();
$date = (date("D F d Y",$time));
$query_photowcap = "INSERT INTO school_updates(title, photo, caption, date, time) VALUES('$title','$photo','$caption','$date','$time')";
mysql_query($query_photowcap);
?>
Run Code Online (Sandbox Code Playgroud)
它只保存文件路径为"C:fakepath/filename ...."因为我不知道如何使用javascript获取文件名,最后我有这个代码将实际图像保存到文件夹但我不真的得到我应该放置的地方:感谢提前:)
<?php
error_reporting(0);
$max_file_size = 200 * 1024; #200kb
if (($_FILES["photo"]["type"] == "image/gif")
|| ($_FILES["photo"]["type"] == "image/jpeg")
|| ($_FILES["photo"]["type"] == "image/png" )
&& ($_FILES["photo"]["size"] < $max_file_size))
{
$path = 'images/' . uniqid();
move_uploaded_file($_FILES["photo"]["tmp_name"],
$path.$_FILES["photo"]["name"]);
}
else
{
echo "Files must be either JPEG, GIF, or PNG and less than 200 kb";
}
?>
Run Code Online (Sandbox Code Playgroud)
为了使用$_FILES超全局访问文件,需要使用multipart/form-data内容类型标头和适当的属性发送它们.不幸的是,您不能xhr手动使用send方法执行此操作,因为发送字符串将自动转换为UTF-8.幸运的是,您仍然可以从javascript中发送二进制数据,例如文件window.File.
旧版浏览器不支持此功能.代码看起来像
var file = document.getElementById('photo').files[0];
...
xhr.send(file);
Run Code Online (Sandbox Code Playgroud)
然后在服务器端,您将需要直接访问输入缓冲区以获取此文件的保留
$file = file_get_contents('php://input');
Run Code Online (Sandbox Code Playgroud)
如果你坚持使用$_FILES你可以FormData在javascript中使用该对象.我之所以选择这个作为第二种选择,是因为我听说过更多的支持问题而且我个人现在避免使用它.
var formData = new FormData(document.getElementById('theForm'));
...
xhr.send(formData);
Run Code Online (Sandbox Code Playgroud)
现在已经有一段时间了,因为我发布了这个答案,现在广泛支持FormData对象,如果您希望上传文件以及其他数据,您可以查看它.