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.
我想建立一个网站,该网站需要每 3 分钟获取一次黄金价格,并在我的项目中的许多控制器中使用这个价格。如何从另一个 API 获取黄金价格以及如何在我的控制器中使用它?
使用 cronjob 向 gold api 发送请求,接收结果并将其保存到数据库中,并在 3 分钟后检查黄金价格是否存在,更新价格。获得数据后,您可以从所有控制器和方法访问它。
Laravel Cron jon -在这里阅读
Laravel HTTP 客户端 - 阅读这里
这是完成任务所需的全部知识