我正在使用 ASIFormDataRequest 在服务器上发送请求。我的问题是 - 如何检查应该发送到服务器的请求字符串。
例如这样的字符串:
client=100001&time=1341271289&sign=99f031b0189aa006ee19ac22e77032a
d&city=2&name=%D0%98%D0%BC%D1%8F&phone=050+111+22+33&email=user
%40mafia.ua&text=%D0%97%D0%B0%D1%87%D0%B5%D0%BC+%D0%B2%D1%8B+
%D1%80%D0%B0%D1%81%D0%BA%D0%BE%D0%B4%D0%B8%D1%80%D0%BE
我的意思是我需要将这个字符串输出到 NSLog 中
Best Answer-推荐答案 strong>
找到您的 ASIHTTPRequestConfig.h 文件并查找行
// When set to 1, ASIFormDataRequests will print information about the request body to the console
#ifndef DEBUG_FORM_DATA_REQUEST
#define DEBUG_FORM_DATA_REQUEST 0
#endif
设置 DEBUG_FORM_DATA_REQUEST 1 就完成了!
关于ios - ASIFormDataRequest 请求字符串,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/11757352/
|