我正在尝试使用Javascript
将png
上传到imgur。我直接使用了Imgur API example中的代码,但我认为我没有正确传递png文件,因为收到错误消息file.type is undefined
。我认为该文件没问题,因为我尝试了几个不同的png。我的代码如下:
<html>
<head>
<script type="text/javascript">
function upload(file) {
// file is from a <input> tag or from Drag'n Drop
// Is the file an image?
if (!file || !file.type.match(/image.*/)) return;
// It is!
// Let's build a FormData object
var fd = new FormData();
fd.append("image", file); // Append the file
fd.append("key", "mykey"); // Get your own key: http://api.imgur.com/
// Create the XHR (Cross-Domain XHR FTW!!!)
var xhr = new XMLHttpRequest();
xhr.open("POST", "http://api.imgur.com/2/upload.json"); // Boooom!
xhr.onload = function() {
// Big win!
// The URL of the image is:
JSON.parse(xhr.responseText).upload.links.imgur_page;
}
// Ok, I don't handle the errors. An exercice for the reader.
// And now, we send the formdata
xhr.send(fd);
}
</script>
</head>
<body>
<button type="button" onclick="upload('test.png')">upload to imgur</button>
</body>
</html>
png
文件test.png
与我的html文件存储在同一目录中。
答案 0 :(得分:3)
该文件必须是使用HTML5 fileAPI创建的File
对象,您不能只为其提供文件名并希望它能够正常工作。
Javascript无法访问文件系统,它只能使用拖放或文件输入来访问提供给它的文件。
答案 1 :(得分:2)
您正在使用的示例要求您使用input元素(type = file)上传某些图像。试试this example。您可以使用Canvas like this访问图像数据。
总结一下,您需要这样做: