将PHP代码转换为目标C.

时间:2013-11-19 10:42:59

标签: php objective-c arrays magento

嗨,我有这个PHP代码:

$proxy = new SoapClient('http://magentohost/api/soap/?wsdl');
$sessionId = $proxy->login('apiUser', 'apiKey');

$quoteId = $proxy->call( $sessionId, 'cart.create');

$arrProducts = array(
    array(
        “product_id” => “1”,
        “qty” => 2
    );

$resultCartProductAdd = $proxy->call(
    $sessionId,
    “cart_product.add”,
    array(
        $quoteId,
        $arrProducts
    )
);

我需要在我的iOS应用中使用它,所以我通过使用库来获取sessionIdquoteId。我正在使用的库如此工作: Magento给了我这个api:customer.create我要在客户中创建sessionId和一个数组,我在其中列出了客户的详细信息。在objectiveC中,我得到了这段代码:

[Magento call:@[@"customer.create", @{
     @"email": email,
     @"password": password,
     @"firstname": firstname,
     @"lastname": lastname,
     @"website_id": @1,
     @"store_id": Magento.service.storeID
}] success:^(AFHTTPRequestOperation *operation, id responseObject) {
    Magento.service.customerID = responseObject;
    NSLog(@"signUp customerID = %@", Magento.service.customerID);
} failure:^(AFHTTPRequestOperation *operation, NSError *error) {
    NSLog(@"error %@", error.localizedDescription);
}];

现在我猜我的库将php数组转换为NSDictionary(查看上面的代码)。我如何在objectiveC中转换数组的php数组(通过使用此库)? 我要使用cart_product.add magento api。 我希望你能理解我的意思,希望你能帮助我。

1 个答案:

答案 0 :(得分:0)

由我自己解决,这是代码:

[Magento call:@[@"cart_product.add", Magento.service.cartID,@[@{@"product_id": productID, @"qty": self.qty}]]
                        success:^(AFHTTPRequestOperation *operation, id responseObject) {
                            NSLog(@"Prodotto aggiunto");
                            [Magento call:@[@"cart.info", @{@"quoteId": Magento.service.cartID}]
                                  success:^(AFHTTPRequestOperation *operation, id responseObject) {
                                      [self getListOfProductsInCart:responseObject];
                                  }failure:^(AFHTTPRequestOperation *operation, NSError *error) {
                                      NSLog(@"Errore: %@", error.localizedDescription);
                                  }];

使用此代码将您在我的问题中看到的php转换为objectiveC。我希望这对某人有用