我是初学程序员,我正在尝试使用casperjs下载并临时保存文件。
casper.start("http://www.google.fr/", function() {
var path = 'C:/WINDOWS/TEMP/logo.png';
fs.write(path, this.download("http://www.google.fr/images/srpr/logo3w.png"), 'w');
});
我尝试在照片查看器中打开文件,并显示“照片查看器不支持文件格式”
答案 0 :(得分:1)
来自文档:
不是fs.write,请使用:
this.download("http://www.google.fr/images/srpr/logo3w.png", path);
希望这有帮助。