我必须发送一个嵌套的 json 请求,其中包含内部层次结构中的图像。例如:
{"product" : {
"catalogue_id" : "x",
"name" : "my product",
"image" : #<image>
}
}
问题是如果我尝试使用multipartFormRequestWithMethod:path:parameters:constructingBodyWithBlock:
(and appendPartWithFileData:name:fileName:mimeType:
),将 catalogue_id 和 name 作为参数传递,图像字段会附加在“产品”之后,如下所示:
{"product" : {
"catalogue_id" : "x",
"name" : "my product"
} ,
"image" : #<image>
}
有没有办法指定图像字段嵌套在某个深度?
非常感谢