我试图找出是否存在特定网页。我在dart文件中使用dart:html
库,我对这些信息感兴趣。
例如,我想知道是否存在这样的网页:https://developer.mozilla.org/en-US/docs/Web/API/HTMLTextAreaElement.autofocus
我怎么能在飞镖中做到这一点?
答案 0 :(得分:2)
只需抓取该网站,如果您收到错误回复,该网站就不存在(或者当前已关闭)。
import 'dart:html';
main() async {
var url = 'http://www.google.com/somepage.html';
var response = await HttpRequest.getString(url);
// examine response for errors
}
尝试DartPad