doumao1917 2018-07-23 01:57
浏览 153
已采纳

如何向formData和ajax过程添加变量

<input type='file' name='inpfile' id='inpfile' accept='image/*' hidden>

js

var clicked;
$('#btnplusa').click(function(){
    clicked = 'a';
    $('#inpfile').click();
});

I want to add clicked variable and proccess it on php side, together with inpfile data.

$('#inpfile').change(function(){
    var file_data = $('#inpfile').prop('files')[0];
    var form_data = new FormData();
    form_data.append('inpfile', file_data, 'clicked', clicked);
    $.ajax({
        url: "banners-pro-btnplus.php",
        type: 'post',
        cache: false,
        contentType: false,
        processData: false,
        data: form_data,
        success: function(data) {
            console.log(data);
        }
    });
});

banners-pro-btnplus.php

$file = $_FILES['inpfile'];

$clicked =  $_POST['clicked'];
echo $clicked;
exit();

Console:

Undefined index: clicked in...

How can I get clicked variable on php side?

  • 写回答

1条回答 默认 最新

  • duannue2455 2018-07-23 07:25
    关注
     <!DOCTYPE html>
        <html>
        <head>
            <title></title>
            <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
            <script type="text/javascript">
                let clicked
                $(document).ready(function(){
    
                    $('#inpfile').change( function ( ){
                        console.log(clicked)
    var file_data = $('#inpfile').prop('files')[0];
         var form_data = new FormData();
            form_data.set('inpfile', file_data , file_data.name );
         form_data.append( 'clicked', clicked);
            $.ajax({
                url: "banners-pro-btnplus.php",
                type: 'post',
                cache: false,
                contentType: false,
                processData: false,
                data: form_data,
                success: function(data) {
                    console.log(data);
                }
            });
                    })
                })
                function bttn_click(){
                    clicked = 'a';
    
                    document.getElementById('inpfile').click();
                }
            </script>
        </head>
        <body>
            <form>
                <input type="file" name="" id="inpfile">
                <button onclick="bttn_click()"  >Browse</button>
            </form>
        </body>
        </html>
    

    You can try this way

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 docker环境配置
  • ¥20 绿盟安全扫描--检测到目标站点存在javascript框架库漏洞
  • ¥30 Android STD快速启动
  • ¥15 如何使用simulink建立一个永磁同步直线电机模型?
  • ¥30 天体光谱图的的绘制并得到星表
  • ¥15 PointNet++的onnx模型只能使用一次
  • ¥20 西南科技大学数字信号处理
  • ¥15 有两个非常“自以为是”烦人的问题急期待大家解决!
  • ¥30 STM32 INMP441无法读取数据
  • ¥15 R语言绘制密度图,一个密度曲线内fill不同颜色如何实现