在我的节点应用中,我试图返回一个简单的对象,并在控制台中得到此错误:
我的生成响应时出错。 TypeError:response.json不是函数
messaging.js
文件中的代码:
module.exports = {
getConfig: function(res) {
getConfig(res);
}
};
function getConfig(response) {
response.json({
enabledForAll: false,
limit: 100
});
};
在main.js
const messaging = require("./modules/messaging.js");
Parse.Cloud.define("getConfig", messaging.getConfig);
有什么建议吗?谢谢
答案 0 :(得分:1)
解析FunctionResponse仅具有两个属性。 apply
和success
。
此外,error
回调的data
部分有两个函数输入define
和FunctionRequest
,因此您可能需要类似FunctionResponse
的东西>