0

目前我正在使用这样的 URL 调用分类术语数据 -

http://scd.blaze.wpengine.com/wp-json/posts?type=listings&filter[listing_area]=northwest

有没有办法可以同时调用两个分类术语,像这样?-

http://scd.blaze.wpengine.com/wp-json/posts?type=listings&filter[listing_area]=northwest&filter[listing_area]=northeast

我已经阅读了所有文档,但我正在努力寻找解决方案,非常感谢您的帮助,在此先感谢!

4

1 回答 1

1

在不知道完整代码的情况下,很难做到 100%,但请尝试...

http://scd.blaze.wpengine.com/wp-json/posts?type=listings&filter[listing_area][]=northwest&filter[listing_area][]=northeast

通过将 [ ] 添加到对 Listing_area 的每个引用的末尾,您现在正在传递一个值数组。否则,您只需传递查询字符串中的最后一个值。

于 2015-12-17T11:09:49.153 回答