如何使用Cloudinary jQuery插件直接从页面上传图像?

时间:2012-08-18 14:28:19

标签: jquery-plugins cloudinary

初学者的问题。

我尝试将照片从网页直接上传到cloudinary

Here是Cloudinary建议使用的jQuery插件。

不幸的是,该插件尚未记录,并且没有明确的" example.html"文件。 我试图了解插件代码,但到目前为止没有成功。

有人可以指出我的方向是什么" example.html"应该是什么样的?

感谢。

3 个答案:

答案 0 :(得分:4)

下载Jquery SDK 服务器sdk。

以下是java服务器端的代码:

在服务器端生成签名:

以下是java中的JSP代码:

<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
    pageEncoding="ISO-8859-1"%>
<%@ page import="java.util.Map" %> 
<%@ page import="java.util.HashMap" %> 
<%@ page import="java.sql.Timestamp" %> 
<%@ page import="com.cloudinary.Cloudinary" %> 
<%
String timestamp=(new Long(System.currentTimeMillis() / 1000L)).toString();
Cloudinary cloudinary = new Cloudinary("cloudinary://CLOUDINARY_URL");
Map<String, Object> params = new HashMap<String, Object>();
Map options = Cloudinary.emptyMap();
boolean returnError = Cloudinary.asBoolean(options.get("return_error"), false);
String apiKey = Cloudinary.asString(options.get("api_key"), cloudinary.getStringConfig("api_key"));
if (apiKey == null)
    throw new IllegalArgumentException("Must supply api_key");
String apiSecret = Cloudinary.asString(options.get("api_secret"), cloudinary.getStringConfig("api_secret"));
if (apiSecret == null)
    throw new IllegalArgumentException("Must supply api_secret");
params.put("callback", "http://www.mcbjam.com/Scripts/vendor/cloudinary/html/cloudinary_cors.html");
params.put("timestamp", timestamp);
String expected_signature = cloudinary.apiSignRequest(params, apiSecret);%>

您可以在Cloudinary Dashboard上拥有CLOUDINARY_URL。 我使用cloudinary.apiSignRequest方法,它包含在服务器cloudinary sdk中。我签署了回调和时间戳。

HTML和Javascript

<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>Insert title here</title>
    <script src="../Scripts/vendor/jquery-1.9.1.min.js"></script>
    <script src="../Scripts/vendor/cloudinary/jquery.ui.widget.js"></script>
    <script src="../Scripts/vendor/cloudinary/jquery.iframe-transport.js"></script>
    <script src="../Scripts/vendor/cloudinary/jquery.fileupload.js"></script>
    <script src="../Scripts/vendor/cloudinary/jquery.cloudinary.js"></script> 
</head>
<body>
<script type="text/javascript">
   $.cloudinary.config({"api_key":"YOUR_API_KEY","cloud_name":"YOUR_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":  <%= timestamp %>, 
          "callback": "http://YOUR_DOMAIN/cloudinary_cors.html",
          "signature": "<%= expected_signature %>", 
          "api_key": "YOUR API KEY" };    
$('#uploadinput').attr('data-form-data', JSON.stringify(data));
</script>
</body>
</html>

将cloudinary_cors.html放在您的主机上并修改html上的路径。设置您的APIKEY和您的云名称。

&lt;%= timestamp%&gt;和&lt;%= expected_signature%&gt;是java上的元素计算。 (你可以在php上做同样的事情。)

我在我的网站上使用此代码http://paint.mcbjam.com 您在此处有更多详细信息:法语http://mcbjam.blogspot.fr/2013/05/integrer-cloudinary-pour-realiser-des.html

答案 1 :(得分:2)

请参阅最近发布的博文,内容涵盖使用jQuery从浏览器直接上传到Cloudinary:http://cloudinary.com/blog/direct_image_uploads_from_the_browser_to_the_cloud_with_jquery

答案 2 :(得分:1)

您只能使用普通的html将图片上传到Cloudinary。您需要一台签署您的请求参数的服务器。所以,这是你的example.html文件:

<html>
        <head>
            <title></title>
            <script src='jquery.min.js' type='text/javascript'></script>
            <script src='jquery.ui.widget.js' type='text/javascript'></script>
            <script src='jquery.iframe-transport.js' type='text/javascript'></script>
            <script src='jquery.fileupload.js' type='text/javascript'></script>
            <script src='jquery.cloudinary.js' type='text/javascript'></script>
            <script type = "text/javascript">
                $.cloudinary.config({ cloud_name: 'sample', api_key: '874837483274837'});
            </script>
        </head>
        <body>
            <input name="file" type="file" 
               class="cloudinary-fileupload" data-cloudinary-field="image_id" 
               data-form-data="--signedData--" />
        </body>
</html>

注意:data-form-data属性中的signedData是由服务器端代码生成的JSONObject,其中包含请求参数的sha1Hex签名。

一个例子如下:

{
    "api_key": "874837483274837",
    "timestamp": "1234567890",
    "public_id": "sample",
    "signature": "de9f2c7fd25e1b3afad3e85a0bd17d9b100db4b3"
}

另外,让我告诉你,你不需要任何其他按钮来上传文件,只需选择文件就会触发jQuery事件并将请求参数发送到Cloudinary。

您可以在java here上找到有关生成签名的信息。