Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我发送(使用 ASIFormDataRequest)一个带有 4 个参数的 POST 请求。当此请求到达时,服务器会启动 NullPointerException。当我调试应用程序时,我不知道如何真正查看手机完成的请求中的参数内的内容。有什么办法可以做到这一点?也许我在 XCode 中缺少一些选项?
谢谢你。
要查看帖子参数,您需要查看内部yourFormRequest.postBody,但请注意数据是这样的,NSMutableData因此您必须将其转换为NSString或NSDictionary
yourFormRequest.postBody
NSMutableData
NSString
NSDictionary
喜欢以下
NSString *str = [[NSString alloc] initWithData:[yourFormRequest.postBody] encoding:NSUTF8StringEncoding];