0

我应该使用我正在使用 Ajax 的Ctrl 键上传图像,但问题是在成功上传数据库中的图像名称时,我无法将它们上传到名为images的文件夹中

我有以下代码,它能够在数据库上使用 ajax 上传我的图像,但无法在文件夹中上传图像

<script>
    function showChar(e){
        if(e.ctrlKey && e.charCode == 98){
            e.preventDefault();

            var j = $('#fl').click();
            if(j){saveImage();}

        }
    }

    function saveImage(){

        //var abc = $('#form1').serialize();
        //alert(abc);return false;

        var fl = $('#fl').val();                        
        if(fl != ''){
            alert('t');
            $.ajax({
                type: 'post',
                url: 'sent.php',
                data: 'fl='+fl,
                success:function(msg){

                }
            }); 

            //$.ajaxFileUpload();           

        }
    }   

</script>
</head>
<body onkeypress="showChar(event);">

<form enctype="multipart/form-data" method="post" id="form1">
    <input type="file" name="fl" id="fl" value=""/>
    <input type="button" name="submit" id="submit" value="Submit" onclick="saveImage();"/>
</form>

和查询为

$fl = $_REQUEST['fl'];
    $name = $_FILES['fl']['name'];
    $temp = $_FILES['fl']['tmp_name'];


    move_uploaded_file($temp, 'images/'.$fl);

    $query = "INSERT INTO tbl_browse (fld_name) VALUES ('$fl')";    
    $res = mysql_query($query);

    if(mysql_num_rows($res)>0){ return 'U'; }
4

1 回答 1

0

试试这个方法

https://stackoverflow.com/a/24839628/1640577 查看问答

           $.ajax({
                type: 'post',
                url: 'sent.php',
                data: 'fl='+fl,
                processData: false,
                contentType: false , 
                success:function(msg){

                }
            }); 
于 2014-08-20T07:19:49.737 回答