如何使用javascript发送文件内容并使用php接收并使用收到的内容创建文件?

时间:2017-03-03 15:30:10

标签: javascript php

如何将文件内容从JQuery $.post发布到PHP后端 收到的数据将保存到服务器端的文件中。

html文件

<html>
<head>
  <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
  <script>
      $.post('sa.jpg', function(data) {
          passVal(data);
      });

      function passVal(data) {        
          $.post("test.php", {
              str: data
          },
          function(data, status) {
              alert("Data: " + data + "\nStatus: " + status);
          });
  }
  </script>
  ...

php文件

<?php
    $myfile = fopen('11.jpg', "w") or die("Unable to open file!");
    $data=$_POST['str'];

    fwrite($myfile,$data );
    fclose($myfile);
?>

我在php方面获得了不同的价值......

0 个答案:

没有答案