javascript - 使用 webapp.connecthandlers 时 mup 部署错误

标签 javascript node.js meteor meteor-up

我正在尝试在访问我的“www”网址以重新路由到“非 www”时实现 301 重定向。重定向在 localhost 上有效,项目构建良好。当我尝试使用 mup 进行部署时,出现此错误:

x Invoking deployment process: FAILED

    -----------------------------------STDERR-----------------------------------
    :callback’ will be initialized after [-Wreorder]
           v8::Handle<v8::Function> callback;
                                    ^
    ../src/heap_output_stream.h:26:29: warning:   ‘v8::Handle<v8::Value> nodex::OutputStreamAdapter::abort’ [-Wreorder]
           v8::Handle<v8::Value> abort;
                                 ^
    ../src/heap_output_stream.h:11:7: warning:   when initialized here [-Wreorder]
           OutputStreamAdapter(
           ^
    gyp info ok 
    npm WARN package.json meteor-dev-bundle@0.0.0 No description
    npm WARN package.json meteor-dev-bundle@0.0.0 No repository field.
    npm WARN package.json meteor-dev-bundle@0.0.0 No README data
      % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                     Dload  Upload   Total   Spent    Left  Speed
  0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0curl: (7) Failed to connect to localhost port 80: Connection refused
    Latest deployment failed! Reverted back to the previous version.

这是有问题的代码。当我删除它时,mup 工作正常。 此代码位于 /lib/_reroute-non-www.js

if( Meteor.isServer ){
  WebApp.connectHandlers.use(function(req, res, next){
    if( req.headers.host == 'www.example.com' ){
      res.writeHead(301, {
        Location: 'https://example.com'
      })
      res.end()
    } else {
      next()
    }
  })
}

这是什么意思?

最佳答案

虽然我不完全确定为什么这组特定的代码会导致 mup 像这样“呕吐”,但我确实找到了其他可能相关的原因。

当使用 RabbitMQ(通过 Wascally )时,我的消费者处理程序必须使用

Fiber(()=>{
  rabbit.handle(key, consumerFn)
}).run()

... 在 consumeFn() 内部我没有可用的 Meteor 环境!没有 Meteor,而且我无权访问可能已在我的应用程序中定义的任何集合。

我能做的是在我的 then 处理程序上使用 Meteor.bindEnvironment 来处理我注册处理程序时返回的 promise 。使用 Meteor.bindEnvironment 可以访问我希望在我的 Meteor 应用程序中包含的所有内容。

Wascally.request(key, {content: 'my content'})
  .then(Meteor.bindEnvironment((result)=>{
    // now i have access to my Meteor environment and all collections
  }))

关于javascript - 使用 webapp.connecthandlers 时 mup 部署错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32954160/

相关文章:

node.js - 将 Promise 设置为变量并在稍后使用它

sorting - meteor 排序集合随机

javascript - 在javascript中单击链接时如何防止函数计数?

javascript - 100 年前的 jQuery UI 日期选择器

javascript - Javascript 中的 onLoad 函数

javascript - 空白函数产生 "object expected"错误

javascript - 背景绑定(bind)与 knockout

node.js - 如何访问 koa.js 中的响应

node.js - npm 链接不关心 package.json 或 .npmignore 中的 "files"

javascript - 我将如何在加载模板上设置最小超时函数