0

我尝试像望远镜示例一样将流星包含到我的应用程序中: https ://gist.github.com/mnmtanish/fe4f7efb3db24e83c310

var mdown = new MeteorDown(function(error, client){
    //code block
});

我的控制台告诉我: Uncaught TypeError: undefined is not a function

meteor list meteorhacks:meteor-down 1.1.1 Load Testing Framework for Meteor

4

1 回答 1

1

看起来在该要点发布后不久,API 发生了变化。如果您查看此提交:https ://github.com/meteorhacks/meteor-down/commit/7791be3a912f37c5a7cf82a230344fb1f761edcd

-      var mdown = new MeteorDown(function (error, client) {
-      client.call('add', x, y, function (err, res) {

去掉了。看起来meteorDown 现在是你想要使用的。我建议查看 Meteor Down 文档以了解 API 的最新用法

具体来说,自述文件显示了以下处理此问题的新方法:

meteorDown.init(function (Meteor) {
    Meteor.call('example-method', function (error, result) {
    Meteor.kill();
  });
});

meteorDown.run({
  concurrency: 10,
  url: "http://localhost:3000"
});
于 2015-05-30T03:31:29.727 回答