我需要将数组传递给 webservice。我已将产品标识符存储到 nsmutablearray 中。我想将此数组传递给我的 php 服务器。所以我有以下事情。
__block ASIFormDataRequest *request = [ASIFormDataRequest requestWithURL:url];
request.requestMethod = @"POST";
[request setPostValue:product_identifiers forKey:@"product_identifiers"];
当我 NSLog 我的数组时,
(
"com.hoiuat.test.loves.oneweek",
"com.hoiuat.test.loves.oneweek",
"com.hoiuat.test.loves.oneweek",
"com.hoiuat.test.loves.oneweek",
"com.hoiuat.test.loves.oneweek",
"com.hoiuat.4",
"com.hoiuat.11",
"com.hoiuat.3",
"com.hoiuat.8",
"com.hoiuat.6"
)
Php 开发人员说他们无法将参数作为数组接收。
请让我知道,我应该如何传递数组。