如何将文件内容从JQuery $.post
发布到PHP后端
收到的数据将保存到服务器端的文件中。
<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
$myfile = fopen('11.jpg', "w") or die("Unable to open file!");
$data=$_POST['str'];
fwrite($myfile,$data );
fclose($myfile);
?>
我在php方面获得了不同的价值......