4

我想使用UiWebView. 站点的某些组件(即使用 AJAX 调用加载的 Web 服务结果)应替换为本地数据。

考虑以下示例:

文本.txt:

foo

page1.html:

<html><head>
    <title>test</title>
    <script type="text/javascript" src="jquery.js"></script>
</head>
<body>
<div id="target"></div>
<script type="text/javascript">
    function init(){
        $.get("text.txt",function(text){    
            $("#target").text(text);
        });
    }
    $(init);
</script>
</body></html>

视图控制器:

@interface ViewController : UIViewController <UIWebViewDelegate>
    @property (nonatomic,assign) IBOutlet UIWebView *webview;
@end


@implementation ViewController
    @synthesize webview;
    //some stuff here
    - (void)viewDidLoad
    {
        [super viewDidLoad];
        [NSURLProtocol registerClass:[MyProtocol class]];
        NSString *url = @"http://remote-url/page1.html";
        NSMutableURLRequest *request = [NSMutableURLRequest requestWithURL:[NSURL URLWithString:url]];
        [request setCachePolicy:NSURLRequestReloadIgnoringLocalAndRemoteCacheData];
        [webview loadRequest:request];
    }
@end

我的协议:

@interface MyProtocol : NSURLProtocol

@end

@implementation MyProtocol

+ (BOOL) canInitWithRequest:(NSURLRequest *)req{
    NSLog(@"%@",[[req URL] lastPathComponent]);
    return [[[req URL] lastPathComponent] caseInsensitiveCompare:@"text.txt"] == NSOrderedSame;
}

+ (NSURLRequest*) canonicalRequestForRequest:(NSURLRequest *)req{
    return req;
}

- (void) startLoading{

    NSLog(@"Request for: %@",self.request.URL);
    NSString *response_ns = @"bar";
    NSData *data = [response_ns dataUsingEncoding:NSASCIIStringEncoding];
    NSURLResponse *response = [[NSURLResponse alloc] initWithURL:[self.request URL] MIMEType:@"text/plain" expectedContentLength:[data length] textEncodingName:nil];

    [[self client] URLProtocol: self didReceiveResponse:response cacheStoragePolicy:NSURLCacheStorageNotAllowed];
    [[self client] URLProtocol:self didLoadData:data];
    [[self client] URLProtocolDidFinishLoading:self];
    [response release];
}

- (void) stopLoading{
    NSLog(@"stopLoading");
}

@end

如果我没有注册我的自定义 URLProtocol,页面会正确显示。如果调用了我startLoading(),则会加载内容并stopLoading()在之后触发。但是在 UIWebView 上什么都没有发生。我试图做一些错误处理,但既没有抛出 JS AJAX 错误,也没有被didFailLoadWithError调用UIWebViewDelegate

我尝试了另一种情况并创建了一个仅加载图像的 HTML 页面:

<img src="image.png" />

并修改了我的 URLProtocol 以仅处理图像的加载-这可以正常工作。也许这与 AJAX 调用有关?

你知道问题可能是什么吗?

提前致谢!

4

1 回答 1

9

我有同样的问题,经过几天的拉头发终于解决了:

您的问题来自您创建响应的方式,您必须创建状态 200 响应并在必要时强制 WebView 允许跨域请求:

NSDictionary *headers = @{@"Access-Control-Allow-Origin" : @"*", @"Access-Control-Allow-Headers" : @"Content-Type"};
NSHTTPURLResponse *response = [[NSHTTPURLResponse alloc] initWithURL:request.URL statusCode:200 HTTPVersion:@"1.1" headerFields:headers];

您可以在我的回答中看到我的完整工作实现:

如何使用 NSURLProtocol 模拟 AJAX 调用?

希望这会有所帮助,文森特

于 2013-03-05T21:50:39.437 回答