0

我正在尝试获取此代码。

<?php
$image = $_POST['image'];     
$image = base64_decode($image);    
$name = hash('md5', time()) . '.gif';    
file_put_contents($name, $image);
echo '{"name": "' . $name . '"}';

和这个一起工作..

$('#save').click(function () {
     $.ajax({
         url: 'images/save.php',
         method: 'POST',
         data: {
             image: b64
         },
         dataType: 'json',
         success: function(data) {
             var a = $('<a />').attr('href', "images/" + data.name).html('permalink');
             $('#url').append(a);
         },
         error: function(err) {
             console.log(err);
         }
     });
 });

我被告知要这样做,但我有点坚持它的含义。

将带有 POST 的完整图像对象发送到此脚本,图像将保存在您的磁盘上,并返回带有图像名称的 JSON 响应。

4

0 回答 0