0

当我将我的应用程序部署到流星云服务器上时,我一直遇到这个错误。

Meteor 代码必须始终在 _.extend.get (app/packages/meteor/dynamics_nodejs.js:14:13) 的 _.extend.apply (app/packages/livedata/livedata_server.js:1268:57) 的 Fiber 中运行在 _.extend.call (app/packages/livedata/livedata_server.js:1229:17) 在 Meteor.startup.Meteor.methods.streamTwit (app/server/server.js:50:24)

但是,我已经包裹在 Fibers 中

streamTwit: function (twit){
    var userid = '1527228696';
    twit.stream(
    'statuses/filter',
    { follow: userid},
      function(stream) {
          stream.on('data', function(tweet) {

          Fiber(function(){
            if(tweet.user.id_str === userid)
            {
              Meteor.call('addQn', tweet);
            }
          }).run();
              console.log(tweet);
              console.log('---------------------------------------------------------');
              console.log(tweet.user.screen_name);
              console.log(tweet.user.name);
              console.log(tweet.text);
          });
        }
      );
    }

我不知道是什么原因,但有人建议我应该用 Meteor.bindEnvironment 包装它。因此,我这样做了:

streamTwit: function (twit){
    this.unblock(); // this doesn't seem to work
    console.log('... ... trackTweets');
    var _this = this;
    var userid = '1527228696';
    twit.stream(
    'statuses/filter',
    { follow: userid},
      function(stream) {
          stream.on('data', function(tweet) {

           Meteor.bindEnvironment(function () {
            if(tweet.user.id_str === userid)
            {
              Meteor.call('addQn', tweet);
            }
           }, function(e) {
             Meteor._debug("Exception from connection close callback:", e);
         });
              console.log(tweet);
              console.log('---------------------------------------------------------');
              console.log(tweet.user.screen_name);
              console.log(tweet.user.name);
              console.log(tweet.text);
          });
        }
      );
    }

//添加问题方法

addQn:function(tweet){
      questionDB.insert({'tweet': tweet, 'date': new Date()});
    }

但现在它甚至不起作用。我意识到这仅在我尝试将一些数据插入 mongodb 时发生。我可以知道我的代码有什么问题吗?谢谢!所有这些代码都写在 app/server/server.js

4

1 回答 1

0

您不需要Meteor.call在服务器端使用。这仅适用于客户端代码。直接调用addQn或者更好的是,内联它,因为它只是一行代码。

于 2013-06-26T04:22:54.180 回答