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
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
我找不到任何轻量级的解决方案,但是名为 GCDWebServer 的好 Objective-C 库在哪里
这就是我使用它的方式:
在 Podfile 中
pod "GCDWebServer"
在我的应用程序中
#import "GCDWebServerFunctions.h"
NSDictionary *dict = GCDWebServerParseURLEncodedForm(bodyString);
是的。NSJSON序列化。这正是您正在寻找的。
更新:
如果您需要解析 application/x-www-form-urlencoded 数据,这个答案是最好的。您可能需要先将NSData 转换为字符串。