提问人:Athar Mujtaba Wani 提问时间:3/12/2023 更新时间:3/12/2023 访问量:29
flutter 中还有其他好的 html 包用于 webscrapping 吗?
Is there any other good html package in flutter for webscrapping?
问:
我需要废弃这个网站 https://student.kletech.ac.in/code/index.php 如果我使用飞镖html和http包,我会收到错误。
.
.
.
Future<void> signin() async{
var res = await http.get(Uri.parse("https://student.kletech.ac.in/code/index.php"));
print(res.body);. // Here i get utf encoding error
}
如果我将我的网址更改为其他网站,代码可以正常工作。
答:
0赞
Saad
3/12/2023
#1
对于抓取,您可以使用解析器包 :https://pub.dev/packages/flutter_parse
评论