使用 .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")
怎么了?非常感谢!