Parse.com CloudCode と Node.js は初めてです
アプリで何度も使用する必要があるクエリやその他の一般的なコードを含むヘルパー モジュールを作成する方法を見つけようとしています。
同期ではないヘルパー メソッドを含むモジュールを作成するにはどうすればよいですか?
どうすれば約束どおりに動作させることができますか? http://blog.parse.com/2013/01/29/whats-so-great-about-javascript-promises/
これが私の意図です....これに対する正しいアプローチが何であるかわかりません
このエラーが発生しています: TypeError: Cannot call method 'then' of undefined
exports.getMyObjects = function (myParam, status) {
var MyObject = Parse.Object.extend("MyObject");
var query = new Parse.Query(MyObject);
query.get(myParam).then(function(myObjects){
status.success(myObjects);
},function(error){
status.error(error);
});
};
//Here on another file I'm trying to use the module
var helper = require('cloud/helper.js');
helper.getMyObjects('sdfsd43').then(function(myObjects){
//Objects found!
},function(error){
//Error
});
// I'm getting thes error from parse: TypeError: Cannot call method 'then' of undefined