【发布时间】:2014-12-10 12:52:43
【问题描述】:
我收到以下错误
W20141210-18:14:54.394(5.5)? (STDERR)
W20141210-18:14:54.395(5.5)? (STDERR) /Users/removed/.meteor/packages/meteor-tool/.1.0.36.1phxfod++os.osx.x86_64+web.browser+web.cordova/meteor-tool-os.osx.x86_64/dev_bundle/lib/node_modules/fibers/future.js:173
W20141210-18:14:54.395(5.5)? (STDERR) throw(ex);
W20141210-18:14:54.395(5.5)? (STDERR) ^
W20141210-18:14:54.396(5.5)? (STDERR) RangeError: Maximum call stack size exceeded
=> Exited with code: 8
=> Your application is crashing. Waiting for file change.
当我使用流星方法返回查询结果时。
Meteor.methods({
rquery: function(post){
console.log(post);
var result = AdvtColl.find();
return result;
}
});
【问题讨论】:
标签: javascript meteor