我可以使用react router loader从给定的外部API中获取数据,但我不能直接使用react router loader从json文件中获取数据。我试了很多次,但都失败了。请帮帮我。
我首先将json文件导入为blogData。enter image description here
然后我试着把它用在loader函数中,但它不起作用。enter image description here
我得到了这个输出:enter image description here
我可以使用react router loader从给定的外部API中获取数据,但我不能直接使用react router loader从json文件中获取数据。我试了很多次,但都失败了。请帮帮我。
我首先将json文件导入为blogData。enter image description here
然后我试着把它用在loader函数中,但它不起作用。enter image description here
我得到了这个输出:enter image description here
1条答案
按热度按时间pkln4tw61#
如果JSON文件与代码捆绑在一起,并被导入,那么只需从加载器函数返回
blogData
。更好的是,由于您也不需要真正加载任何东西,路由组件应该/可以直接导入
blogData
。