是否可以使用 JavaScript 打开文本文件(位置如 http://example.com/directory/file.txt)并检查文件是否包含给定的字符串/变量?
在 PHP 中,这可以通过以下方式轻松完成:
$file = file_get_contents("filename.ext");
if (!strpos($file, "search string")) {
echo "String not found!";
} else {
echo "String found!";
}
有没有办法做到这一点?我正在.js
使用 Node.js appfog 在文件中运行“函数”。