从 NSURLRequest 获取 POST 参数

发布于 2024-10-31 19:45:13 字数 234 浏览 3 评论 0原文

是否可以从方法中的 NSURLRequest 检索 POST 参数的值;

-(BOOL) webView:(UIWebView *)webView shouldStartLoadWithRequest:(NSURLRequest *)request navigationType:(UIWebViewNavigationType)navigationType

是这样吗,这是怎么做到的?

Is it possible to retrieve the value of a POST parameter from a NSURLRequest in the method;

-(BOOL) webView:(UIWebView *)webView shouldStartLoadWithRequest:(NSURLRequest *)request navigationType:(UIWebViewNavigationType)navigationType

Is so, how is this done?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

挽容 2024-11-07 19:45:13

这应该可以通过 NSURLProtocol 的类方法实现:

+ (id)propertyForKey:(NSString *)key inRequest:(NSURLRequest *)request

因此,如果您有一个名为“place”的属性,您可以尝试:

[NSURLProtocol propertyForKey:@"place" inRequest:myRequestObject]

[编辑]
如果你想检索所有属性,我认为你必须使用 - (NSData *)HTTPBody
来自 NSURLRequest,然后自己解析属性名称/值。 urldecode 和 RegEx 应该没有问题。

That should be possible with the class method of NSURLProtocol:

+ (id)propertyForKey:(NSString *)key inRequest:(NSURLRequest *)request

So if you have got a property named "place" you could try that:

[NSURLProtocol propertyForKey:@"place" inRequest:myRequestObject]

[EDIT]
If you want to retrieve all properties, I think you have to use - (NSData *)HTTPBody
from NSURLRequest and then parse the property names/values yourself. Should be no problem with urldecode and RegEx.

小霸王臭丫头 2024-11-07 19:45:13
    NSURLRequest *request = ...
    NSError *error = nil;
    NSDictionary *parameters = [NSJSONSerialization JSONObjectWithData:[request HTTPBody] options:0 error:&error];
    NSURLRequest *request = ...
    NSError *error = nil;
    NSDictionary *parameters = [NSJSONSerialization JSONObjectWithData:[request HTTPBody] options:0 error:&error];
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文