我正在通过api使用Wagtail开发无头CMS。我的问题是,如何通过http请求使用查找表达式来进一步过滤查询集。
例如,我可以使用这种GET:
http://127.0.0.1:8000/api/v2/pages/?title=Home
但不是这样:
http://127.0.0.1:8000/api/v2/pages/?title__startswith=H
{
"message": "query parameter is not an operation or a recognised field: title__startswith"
}