0

使用 .NET,我使用 SOAP V2 创建了一个新产品。所有字段都正确插入,没有 CATEGORY。类别总是空的!(我有一个 ID 为 37 的类别)

    Dim para As New SOAP2.catalogProductCreateEntity

    Dim ar(0) As String
    ar(0) = "37"

    para.category_ids = ar
    para.name = strRefmatID
...
    rc = gService.catalogProductCreate(gSession, "simple", "64", strRefmatID, para, "0")

怎么了?非常感谢!

4

1 回答 1

0

尝试 category_id 或 entity_id,而不是 category_ids。查看表结构,看看问题出在哪里。

于 2012-10-24T12:53:21.620 回答