我有注册表单,我希望让用户上传他的图片。
这是我尝试上传到parse.com的js: 我得到代码100的警报。(连接parse.com没有问题,因为常规注册工作正常)
var fileUploadControl = $("#img1")[0];
if (fileUploadControl.files.length > 0) {
var file = fileUploadControl.files[0];
var name = "photo.png";
var parseFile = new Parse.File(name, file);
parseFile.save().then(function() {
// The file has been saved to Parse.
var url = parseFile.url();
user.set("img", url);
}, function(error) {
alert("Error: " + error.code + " " + error.message);
// The file either could not be read, or could not be saved to Parse.
});
}
这是“img1”声明
的html<form dir="rtl" class="form-container" id="signUp_form" method='post'>
.........................
......................
<input type="file" name="img1" size="40" id="img1" onchange="readURL(this);">
<img id="blah" src="empty-f.gif" alt="your image" width="150px" height="150px" />
</form>
如果相关:
function readURL(input) {
if (input.files && input.files[0]) {
var reader = new FileReader();
reader.onload = function (e) {
$('#blah')
.attr('src', e.target.result);
};
reader.readAsDataURL(input.files[0]);
}
}
感谢
答案 0 :(得分:0)
如果用户img列是指向图像对象的指针,则需要将值设置为图像对象而不是url。
user.set("img", parseFile);