标签: javascript file-get-contents tampermonkey
在PHP中,我们有一个名为file_get_contents的函数,它可以获取网站的内容并将其转换为字符串,但JavaScript呢?什么是JavaScript相当于file_get_contents?有吗?
$string = file_get_contents("http://example.com/");
我无法访问PHP,我使用tampermonkey编辑此代码,所以它只是JavaScript。
答案 0 :(得分:0)
对于节点,有http.get()。
http.get()
对于现代浏览器,有fetch()。
fetch()
对于旧版浏览器,有XHR。