1

给定

a chunk of books and each book will associated with unique id

场景

user can order more than one book

目标

   making an NSMutableURLRequest and send this request to server and let server know which books 
    are being picked 

问题

  For example, user A will choose 3 books whose id are a, b ,c. How can I send an array 
  containing with these id in the request so that server can know that user A are ordering these books
4

1 回答 1

1

取决于您的服务器期望的格式,例如,如果您使用 RESTful,那么您将不得不在 post 或 get 之间进行选择,并基于该构建您的查询。如果您确实使用了 restful,那么请使用 RestKit API 并使用 params 属性。(或者您可以直接使用基本的 ios api 自己构建它们)。您也可以以 JSON 格式发送数据,但服务器必须知道如何解析它。

于 2012-07-12T02:24:15.277 回答