Magento API Rest过滤器

时间:2013-03-14 21:45:49

标签: api magento rest

所以我在下面有这段代码,它将成功提取产品并为我的magento商店提供XML数据......

http://mywebsite.com/api/rest/products?type=rest&filter[1][attribute]=name&filter[1][in]=test%20product%20name

但是,如果我将产品名称完美,它只会提取产品信息。如果我试着放入

http://mywebsite.com/api/rest/products?type=rest&filter[1][attribute]=name&filter[1][in]=test

它不会带来任何产品。我的理解是,如果我使用“[in]”过滤器,它应该显示包含“测试”字样的所有产品,但它不会...

1 个答案:

答案 0 :(得分:4)

in - “equals any of” - 返回与具有指定属性的项目相等的项目

尝试使用'like'...

http://mywebsite.com/api/rest/products?type=rest&filter[1][attribute]=name&filter[1][like]=%test%