我正在.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");