简体   繁体   中英

dropzone.js: How can I rename file?

I want to rename a file uploaded with dropzone.js. I have read the other question of rename file with dropzone, but I don't understand.

I've tried this:

this.on("sending", function(file, xhr, formData) { 
    var abdocument.getElementById("a").value
    var nick = document.getElementById("b").value;
    formData.append("fileName", a+ " - " + b);
    });
  }
};

but then how can I use this "fileName"? I've to use in php function? This is mine:

<?php

$upload_folder = 'uploads';
if (!empty($_FILES)) {
  $temp_file = $_FILES['file']['tmp_name'];
  $target_path = dirname( __FILE__ ) .  '/' . $upload_folder . '/';
  $target_file =  $target_path . $_FILES['file']['name'];


  if( file_exists( $target_path ) ) {
    move_uploaded_file($temp_file, $target_file);
  } else {
    header($_SERVER['SERVER_PROTOCOL'] . ' 500 Internal Server Error', true, 500);
  }
}

?>

or can I rename via javascript?

Thanks to all

好的,我必须这样做:

$_FILES['file']['name'] = ($_POST["fileName"]);

只需将其设置为$ _FILE超全局,如下所示:

 $_FILES['file']['name']="your_new_file_name";

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM