0

react-admin前端调用后端 API 时,从浏览器控制台收到此错误:

Warning: Missing translation for key: "The X-Total-Count header is missing in the HTTP Response. The jsonServer Data Provider expects responses for lists of resources to contain this header with the total number of results to build the pagination. If you are using CORS, did you declare X-Total-Count in the Access-Control-Expose-Headers header?"

如果ng-admin用来调用后端API,效果很好。

4

1 回答 1

5

您需要在回复中添加一个名为“X-Total-Count”的标题来解决这个问题。“X-Total-Count”的值应该等于记录的总数。

假设您正在获取评论列表,数据库中共有 125 条评论,您从中获取 25 条记录。那么“X-Total-Count”的值应该是 125。

它被用于分页。

例如,这里我附上了 Chrome 开发工具的截图。

在此处输入图像描述

于 2018-06-18T19:02:16.767 回答