流星调用404错误

Meteor Invoking 404 Error

我正在使用 cheerio 获取网站的 html,当网站 link 不存在时 (404),meteor.call returns 出错而不是继续。但是,因为网站为每个日期设置格式的方式有两种,我想同时检查这两种方式,而不是让 meteor 抛出 404 错误。我该如何处理?

例如,

    result2 = Meteor.http.get("http://dining.columbia.edu/43week-ten-friday-breakfast-fbc");
    $ = cheerio.load(result2.content);
    menu2 = $('#main-wrapper').text();

link returns 找不到页面错误,这很好-因为如果找不到该页面,我仍然想检索 html.

感谢您的帮助。

没有Meteor.http.get。您需要调用 HTTP.get 方法。

查看文档 - http://docs.meteor.com/#/full/http_get