使用jQuery使用Cloudinary API直接上传图片

时间:2016-05-13 08:18:28

标签: jquery image upload cloudinary

我正在尝试使用使用jQuery的Cloudinary图片上传API上传图片。我不知道。我使用以下代码。 我不知道我们在签名参数中使用了什么值。

<!DOCTYPE html>
<html>
    <head>
        <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
        <title>Insert title here</title>
        <script src="http://code.jquery.com/jquery-1.9.0.js"></script>
        <script src="js/jquery.ui.widget.js"></script>
        <script src="js/jquery.iframe-transport.js"></script>
        <script src="js/jquery.fileupload.js"></script>
        <script src="js/jquery.cloudinary.js"></script> 
    </head>
    <body>
        <script type="text/javascript">
            $.cloudinary.config({"api_key":"api_key","cloud_name":"cloud_name"});
        </script> 
        <input name="file" type="file" id="uploadinput"
            class="cloudinary-fileupload" data-cloudinary-field="image_upload" 
            data-form-data="" ></input>
        <script>
            var data = { "timestamp":  '', 
              "callback": "http//localhost/cloudinar/index.php?message='file     has been uploaded'",
              "signature": "", 
              "api_key": "api_key" };    
              $('#uploadinput').attr('data-form-data', JSON.stringify(data));
        </script>
    </body>
</html>

2 个答案:

答案 0 :(得分:2)

在与支持人员交谈后,我被定向到this post,其中显示了如何使用&#34; unsigned&#34;尽可能简单地将文件直接上传到Cloudinary。方法:

$('.upload_field').unsigned_cloudinary_upload("zcudy0uz", 
    { cloud_name:'demo', tags:'browser_uploads' }, 
    { multiple:true }
)
.on('cloudinarydone', function(e, data){
    var opts = { 
        format  : 'jpg',
        width   : 150,
        height  : 100,
        crop    : 'thumb',
        gravity : 'face',
        effect  : 'saturation:50'
    };

    $('.thumbnails').append( $.cloudinary.image(data.result.public_id, opts) )
})
.on('cloudinaryprogress', function(e, data){ 
    var W = Math.round((data.loaded * 100.0) / data.total) // %
    $('.progress_bar').css('width', W + '%'); 
});

我还被一个名叫&#34; Maor Gariv&#34;的人给了demo page。谁回答了我的支持电子邮件。

答案 1 :(得分:1)

Cloudinary的服务器端SDK支持自动生成自动包含相应签名的输入字段。 有关更多信息(例如,使用PHP): http://cloudinary.com/documentation/php_image_upload#direct_uploading_from_the_browser