我正在尝试让 parse.com 的花哨的新承诺起作用~我的意思是使用 parse 云 API。可悲的是,我遇到了一些麻烦 - 我找不到任何关于如何使其工作的真正讨论(api似乎都是谎言或无能)
这是我的代码:
query.find(
function(results){
if (results.length > 0){
return results[0].get("id");
} else {
response.error("Nothing found. Sod this.");
}
},
function(error){
response.error("ServerDown");
}
).then(
function(moduleId){
//do anything here, i don't know, increment module? Who cares!
},
function(error){
console.log("error");
}
);
无论出于何种原因,此代码将不起作用
我得到错误:
{"code":141,"error":"TypeError: Cannot call method 'then' of undefined\n at getModuleIdIfAny (main.js:71:4)\n at main.js:50:2"}
哪个指向读取的行).then(
如果你能提供答案,我的笔记本电脑会爱你的,否则它必须快速进化翅膀 v。