2

我正在.net 中使用 Magento api v2,我正在尝试从给定的类别 ID 中获取产品列表。我已经设置了一个复杂的过滤器。但是,我不知道我的 associativeEntity 的值应该是什么。(category_ids 是一个字符串数组)

有谁知道价值应该是什么?我的过滤器的代码片段发布在下面。

        filters f = new filters();
        f.complex_filter = new complexFilter[]
        {
            new complexFilter()
            {
                key = "category_ids",
                value = new associativeEntity
                {
                    key = "in",
                    value = " "
                }
            }
        };

        catalogProductEntity[] result;

        result = this.client.catalogProductList(this.sessionId, f, "default");
4

1 回答 1

1

了解如何在不使用复杂过滤器的情况下执行此操作。(并且仍然做过滤服务器端)

有一个方法叫做:catalogCategoryAssignedProducts(string session_id, int category_id)

此方法返回给定类别 id 的产品数组。返回的数组类型为:catalogAssignedProduct

于 2012-10-01T13:24:44.950 回答