我已在本地计算机上设置了预渲染服务器。
它在端口3033上,当我在
中输入时,它似乎显示了我的流星站点的渲染版本curl http://localhost:3033/http://localhost:3000/?_escaped_fragment_=
知道我的预渲染网站有效,我试图设置它,以便我去
curl http://localhost:3000/?_escaped_fragment_=
它应该给我我的Meteor网站。
我正在使用此软件包(https://github.com/dfischer/meteor-prerenderio)并且我在settings.json文件中有这一行
"PrerenderIO": {
"prerenderServiceUrl": "http://localhost:3033/"
}
然而,当我跑
时curl http://localhost:3000/?_escaped_fragment_=
它什么也没有返回,我在流星服务器日志中显示此消息
res.send(status, body): Use res.status(status).send(body) instead
它似乎没有击中prerender服务器。
这是什么消息以及为什么我无法点击预渲染服务器?