我正在尝试在javascript中将字符串转换为File对象,但是我收到错误。
我的代码:
var contents = fs.readFileSync('./dmv_file_reader.txt').toString()
var readerfile1 = new File([""], contents);
(我必须使用内容作为文件,而不是字符串)
我的输出是:
ReferenceError: File is not defined
at d:\Workspace\DMV\dist\win-ia32-unpacked\resources\app.asar\main.js:67:32
at process._tickCallback (internal/process/next_tick.js:103:7)
任何解决方案some1?
答案 0 :(得分:2)
首先,您必须从Javascript对象创建blob,然后将该blob对象传递给File()构造函数以创建File对象。希望这会有所帮助。
var contents = fs.readFileSync('./dmv_file_reader.txt').toString()
var blob = new Blob([contents], { type: 'text/plain' });
var file = new File([blob], "foo.txt", {type: "text/plain"});