如何定义对 json-server 查询的开始和结束?
How to define start and end in query to a json-server?
当我这样查询时:
http://localhost:3010/articles?_start=0&end=4
我得到了全部数据!有什么问题吗?
我找到了!
结束参数之前亲爱的下划线被遗漏了!
所以应该是这样的:
http://localhost:3010/articles?_start=0&_end=4
当我这样查询时:
http://localhost:3010/articles?_start=0&end=4
我得到了全部数据!有什么问题吗?
我找到了! 结束参数之前亲爱的下划线被遗漏了! 所以应该是这样的:
http://localhost:3010/articles?_start=0&_end=4