Ajax API Request返回400 with base64图像数据

时间:2013-06-20 14:05:45

标签: javascript jquery ajax html5 api

我正在尝试使用Imgur API在我的网站上创建一个功能,当我写博客文章时,我可以将图片拖到<textarea>,然后将其上传到Imgur和链接将插入textarea为我。此功能使用HTML5的Draggable / Droppable功能,新的FileReader对象和jQuery AJAX。

到目前为止,当我使用$.ajax()向API发送请求时,API会返回400错误,并显示消息“不支持文件类型或图像已损坏”。但是,我知道我的图像的文件类型受支持(data/png)并且FileReader生成的数据没有损坏,因为我可以将数据粘贴到我的URL栏中并得到图片我已插入。

$(document).ready(function(e) {
  var area = document.getElementById('post_body');
  function readFiles(files) {
    console.log("readfiles called! files: ");
    console.log(files);
    var fr = new FileReader();
    fr.onload = function(event) {
      console.log(event);
      var dat = "{image:'"+event.target.result+"'}";
      console.log(dat);
      $.ajax({
        type:"POST",
        data:dat,
        url:'https://api.imgur.com/3/image',
        headers: {
          Authorization: "Client-ID CLIENT-ID-WAS-HERE"
        },
        contentType: "text/json; charset=utf-8",
        dataType: "json",
        success:function(msg) {
          console.log(msg);
          area.innerHTML += msg.data;
        },
        error:function(errormsg) {
          console.log(errormsg);
          alert("Sorry, there was an error uploading the image." + errormsg.responseText);
        }
      });
    }
    fr.readAsDataURL(files[0]);
  }

  area.ondragover = function(e) {
    e.preventDefault();
    console.log("ondragover fired!");
    $(this).addClass('hover');
  }
  area.ondragend = function(e) {
    e.preventDefault();
    console.log("ondragend fired!");
    $(this).removeClass('hover');
  }
  area.ondrop = function(e) {
    console.log("ondrop fired!!");
    if ($(this).hasClass('hover')) $(this).removeClass('hover')
    e.preventDefault();
    readFiles(e.dataTransfer.files);
  }
});

1 个答案:

答案 0 :(得分:2)

Imgur API可能不接受JSON数据字符串;它可能只接受form-style POST data payload之类的

image=fQas3r...&type=base64&title=Cats%20Forever

但是你传给它一个JSON字符串。

如果您为data提供实际对象而不是JSON字符串,jQuery将自动格式化您的有效负载:

var datObj = { image: event.target.result };
 $.ajax({
     type: "POST",
     data: datObj,
     ...

此外,由于您正在查找表单数据字符串而不是JSON,因此请从Ajax请求中删除contentType参数。