gpt4 book ai didi

javascript - 类型错误 : Cannot call method 'then' of undefined at Object. Parse.File.save

转载 作者:塔克拉玛干 更新时间:2023-11-02 21:18:49 25 4
gpt4 key购买 nike

我正在使用来自 Angular js 应用程序的 parse.com 的 js api。我正在尝试保存/更新用户的个人资料图片。我有以下代码:

一些 html 。 . .

<input type="file" capture="camera" accept="image/*" id="profilePhotoFileUpload">

感谢google i/oraymondparse js guide

我的 Controller 中的代码:

$scope.updateUserProfile = function (user) {

var fileUploadControl = $("#profilePhotoFileUpload")[0];
if (fileUploadControl.files.length > 0) {
var file = fileUploadControl.files[0];
var name = "photo.jpg";

var parseFile = new Parse.File(name, file);

parseFile.save();


}

我一直收到这个错误:

TypeError: 无法调用未定义的方法 'then' 在 Object.Parse.File.save (parse-1.2.8.js:4084:43)

enter image description here

当调用 parseFile.save() 时

基本上 _source 是未定义的。 . .为什么?!

谢谢!

最佳答案

我终于解决了这个问题,因为我的最终目标是将它与 phonegap 一起使用,with the info in this post. .非常感谢雷蒙德卡姆登!

函数 gotPic(数据){

window.resolveLocalFileSystemURI(data, function(entry) {

var reader = new FileReader();

reader.onloadend = function(evt) {
var byteArray = new Uint8Array(evt.target.result);
var output = new Array( byteArray.length );
var i = 0;
var n = output.length;
while( i < n ) {
output[i] = byteArray[i];
i++;
}
var parseFile = new Parse.File("mypic.jpg", output);

parseFile.save().then(function(ob) {
navigator.notification.alert("Got it!", null);
console.log(JSON.stringify(ob));
}, function(error) {
console.log("Error");
console.log(error);
});

}

reader.onerror = function(evt) {
console.log('read error');
console.log(JSON.stringify(evt));
}

entry.file(function(s) {
reader.readAsArrayBuffer(s);
}, function(e) {
console.log('ee');
});

});

关于javascript - 类型错误 : Cannot call method 'then' of undefined at Object. Parse.File.save,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17518375/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com