gpt4 book ai didi

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

转载 作者:行者123 更新时间:2023-11-30 16:39:01 26 4
gpt4 key购买 nike

我的项目使用 Sails Js 和 Parse。不起作用的是我无法将文件上传到 Parse。网上有很多相同的话题,但总是没有解决!

一切正常,直到这一点:

var newFile = new Parse.File(fileName, file, contentType);
// fileName = blue.jpg, file = { JSON of all the file's information }, contentType = 'image/jpeg',
// newFile = { _name: 'blue.jpg' }
// so my HTML form works.

// I tried (1)
newFile.save().then(function() {
// The file has been saved to Parse.
}, function(error) {
// The file either could not be read, or could not be saved to Parse.
});

// I tried (2)
fs.readFile(filePath, function (err, data) {
var newFile = new Parse.File('my_path_I_want...', data);
newFile.save().then(function(file) {
}, function(error) {
});
});

问题总是一样的:

myApp/node_modules/parse/build/parse-latest.js:4438
self._previousSave = self._source.then(function(base64, type) {
^
TypeError: Cannot read property 'then' of undefined at Object.Parse.File.save (myApp/node_modules/parse/build/parse-latest.js:4438:42)

我真的不知道现在该做什么/尝试什么。

Here他们说这是一个错误,但我不相信,自 2014 年以来没有上传..

here是解析文件的解析文档部分。

你有想法吗?

最佳答案

您是否正在检查实际文件是否存在?

ImageExist(url){
var img = new Image();
img.src = url;
return img.height != 0;
}

从哪里上传,检查路径是否也没有中断。

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

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