我们正在使用此节点模块 https://www.npmjs.com/package/contentful-management 进行内容 API 访问。在文档中,它说条目可以按 space.getEntries({ 'sys.id[in]': [1,2]}) 过滤,但它生成的 URL 如下。
https://api.contentful.com:443/spaces/ /entries?content_type=site5&fields.country%5Bin%5D=%5B'US', '印度'%5D&fields.pinCode%5Bmatch%5D=10007&access_token=
它将“[”和“]”转换为编码值,导致 URL 响应失败。这是由模块自动完成的。有没有办法解决这个问题。