gpt4 book ai didi

iphone - NSURL 添加参数到 fileURLWithPath 方法

转载 作者:技术小花猫 更新时间:2023-10-29 10:45:10 28 4
gpt4 key购买 nike

我使用这行代码将本地 html 文件加载到 Web View 中:

NSURL *url = [NSURL fileURLWithPath:[[NSBundle mainBundle] pathForResource:@"index" ofType:@"html" inDirectory:@"html"]];

但是我想在 url 中添加一些 http 参数,但到目前为止还没有成功。

我已经试过了:

url = [url URLByAppendingPathComponent:@"?param1=1"];

但此后 html 不会加载到 webview 中。

有没有办法用参数在 webview 中加载本地 html 文件?

最佳答案

这样做:

NSURL *url = [NSURL fileURLWithPath:[[NSBundle mainBundle] pathForResource:@"index" ofType:@"html" inDirectory:@"html"]];

NSString *URLString = [url absoluteString];
NSString *queryString = @"?param1=1";
NSString *URLwithQueryString = [URLString stringByAppendingString: queryString];

NSURL *finalURL = [NSURL URLWithString:URLwithQueryString];
NSURLRequest *request = [NSURLRequest requestWithURL:finalURL cachePolicy:NSURLRequestReloadIgnoringCacheData timeoutInterval:(NSTimeInterval)10.0 ];

[web loadRequest:request];

关于iphone - NSURL 添加参数到 fileURLWithPath 方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11882501/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com