Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 R 从网站获取 json 文件。特别是,我使用了 RJSONIO 包的 fromJSON 函数。我正在尝试从 50,000 个网站链接中获取 json 文件。但是,其中一些可能不是有效的 API 链接。现在,我正在使用 for 循环来获取 json 文件。但是,每次遇到无效链接时,整个程序都会停止。
如果遇到无效的 API 链接,我如何才能传递到下一个迭代?
事实证明,在每次迭代中使用 tryCatch 都可以完成这项工作。如果它是一个无效的 URL,将发布一些警告消息,但迭代将继续。