gpt4 book ai didi

ios - 从 webview 中提取文本

转载 作者:行者123 更新时间:2023-11-28 22:16:17 24 4
gpt4 key购买 nike

我正在尝试从网站中提取数据。

- (void)webViewDidFinishLoad:(UIWebView *)webView
{

NSLog(@"finish loading");
NSLog(@"TEXT of website \n %@",[_webView stringByEvaluatingJavaScriptFromString:@"document.documentElement.innerText;"]);
NSString *webTextString = [_webView stringByEvaluatingJavaScriptFromString:@"document.documentElement.innertext;"];
NSLog(@"Website Text: %@",webTextString);

}

NSLog 实际上是显示数据,但是当我将数据复制到 NSString 时,它始终保持为空;

这是响应输出:2014-02-04 17:41:07.795 MYAPP[76113:70b] 网站文本

......//更多文字

议会警告称,英国的部分道路网络可能变得非常不安全,需要完全关闭。

一些地区的地方当局表示,财政非常紧张,他们可能不得不考虑停止对农村公路网的维护。

......//更多文字

2014-02-04 17:41:07.795 MYAPP[76113:70b] 网站文字:

最佳答案

行内

NSString *webTextString =  [_webView stringByEvaluatingJavaScriptFromString:@"document.documentElement.innertext;"];

你的大小写错误。应该是innerText,不是innertext

关于ios - 从 webview 中提取文本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21559733/

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