我使用纽约时报API返回包含关键字"中东"的文章。我需要这些文章来自news_desk" World"。
当我运行NY开发人员console时,它可以运行。
当我将代码实施到我的环境中时,我在控制台中获得的唯一内容就是第40行的console.log
返回 - 列出了页码。不返回任何错误,但也不返回任何内容 - 不在控制台或.txt文件中
任何人都可以提供任何见解吗?
https://gist.github.com/anonymous/469774434841b7215c2b41b56b7ee797
答案 0 :(得分:0)
您的代码正确且有效,目前只有0个结果,包含关键字“中东”和来自news_desk“World”的文章。在JSON.parse()
来电后,请尝试将响应正文记录到控制台。
{ response: { meta: { hits: 0, time: 24, offset: 10 }, docs: [] },
status: 'OK',
copyright: 'Copyright (c) 2013 The New York Times Company. All Rights Reserved.' }
要确认这一点,请尝试'fl':'news_desk:("Business")'
:
{ response: { meta: { hits: 6, time: 29, offset: 10 }, docs: [] },
status: 'OK',
copyright: 'Copyright (c) 2013 The New York Times Company. All Rights Reserved.' }