通过RestAPI获取strapi的数据

这篇博客详细介绍了如何通过RestAPI访问Strapi数据,包括获取内容、过滤、使用where、and、or条件,以及排序、限制条数、分页和获取不同状态的文章。同时还提供了相关参考文档链接。
摘要由CSDN通过智能技术生成
一、访问 strapi 数据
1、获取内容
# 获取 restaurants 所有内容
GET http://localhost:1337/restaurants

# 获取 restaurants 中 id = 1 的内容
GET http://localhost:1337/restaurants/1

# 获取 restaurants 中内容的数量
GET http://localhost:1337/restaurants/count
2、过滤
# 获取 firstName 等于 John 的内容
GET /users?firstName=John
or
GET /users?firstName_eq=John

# 获取 price ≥ 3 的餐馆
GET /restaurants?price_gte=3

# 获取 id 为 3 或 6 或 8 的餐馆
GET /restaurants?id_in=3&id_in=6&id_in=8
Filter Description
No suffix or eq Equal
ne Not equal
lt Less than
gt Greater than
lte Less than or equal to
gte Greater than or equal to
in Included in an array
nin Not included in an array
contains Contains
ncontains Doesn’t contain
containss Contains, case sensitive
ncontainss Doesn’t contain, case sensitive
null Is null or not null
3、where
GET /restaurants?_where[price_gte]=3
GET /restaurants?_where[0][price_gte]=3&[0][price_lte]=7
<
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值