2

are there some commonly used utils or standard way to parse http-forms into key-value pairs e.g. into NSDictionary?

thanks for any help

4

2 回答 2

0

我找不到任何轻量级的解决方案,但是名为 GCDWebServer 的好 Objective-C 库在哪里

这就是我使用它的方式:

在 Podfile 中

pod "GCDWebServer"

在我的应用程序中

#import "GCDWebServerFunctions.h"

NSDictionary *dict = GCDWebServerParseURLEncodedForm(bodyString);
于 2015-09-29T16:19:24.193 回答
-2

是的。NSJSON序列化。这正是您正在寻找的。

更新:

如果您需要解析 application/x-www-form-urlencoded 数据,这个答案是最好的。您可能需要先将NSData 转换为字符串。

于 2014-04-13T19:26:05.650 回答