我正在尝试获取Parse Cloud Module示例,并转变为一个单独的方法(而不是一个回调,因为当前在Parse Docs示例中)。
每次我尝试调用该函数时,都会收到以下消息,然后没有任何反应:
I2015-04-20T23:46:47.073Z] v19:冉云功能 用户uX9PTGGfji的generateProfilePhotoThumbnail:输入: {“objectId”:“uX9PTGGfji”}结果:未定义
我不是Javascript的高手。我想我犯了一些错误。请,有人可以查看我的代码,并告诉我什么是错的?谢谢!!
var Image = require("parse-image");
Parse.Cloud.define("generateProfilePhotoThumbnail", function(request, response) {
var query = new Parse.Query(Parse.User);
query.equalTo("objectId", request.params.objectId);
query.first({
success: function(foundUser) {
var user = foundUser;
Parse.Cloud.httpRequest({
url: user.get("profilePhoto").url()
}).then(function(response) {
var image = new Image();
return image.setData(response.buffer);
}).then(function(image) {
// Crop the image to the smaller of width or height.
var size = Math.min(image.width(), image.height());
return image.crop({
left: (image.width() - size) / 2,
top: (image.height() - size) / 2,
width: size,
height: size
});
}).then(function(image) {
// Resize the image to 64x64.
return image.scale({
width: 64,
height: 64
});
}).then(function(image) {
// Make sure it's a JPEG to save disk space and bandwidth.
return image.setFormat("JPEG");
}).then(function(image) {
// Get the image data in a Buffer.
return image.data();
}).then(function(buffer) {
// Save the image into a new file.
var base64 = buffer.toString("base64");
var cropped = new Parse.File("thumbnail.jpg", { base64: base64 });
return cropped.save();
}).then(function(cropped) {
// Attach the image file to the original object.
user.set("profilePhotoThumbnail", cropped);
}).then(function(result) {
response.success(result);
}, function(error) {
response.error(error);
});
},
error: function(error) {
response.error("generateProfilePhotoThumbnail failed" + error);
}
});
});
答案 0 :(得分:0)
从它的外观来看,query.first()是一个异步调用,并且该函数在进行此调用后返回,因此结果是未定义的。尝试
query.first().then(function(foundUser){
//put rest of your code here
}, function(error) {
response.error(error);
});