我正在GitHub上的IDE的分支上工作,主要问题之一是它将文件保存到cookie而不是普通计算机上。因此,我需要一种保存和打开文件的方法。我已经通过使用Blob来保存文件系统了。但是,根据控制台,打开文件会提供一个“意外字符串”,即使它很原始。
下面是功能:
function openFileCMD() {
console.log('Opening File...');
dialog.showOpenDialog( (fileName), {
filters: [{
name: 'Text Files',
extensions: ['txt']
}, {
name: 'HTML Files',
extensions: ['html', 'htm']
}, {
name: 'Rich Text File',
extensions: ['rtf']
}, {
name: 'XML/YAMLFile',
extensions: ['xml', 'yml', 'yaml']
}, {
name: 'JSON File',
extensions: ['json'] }
]} => {
if(fileName === undefined) {
console.log("Ouch. That wall hurt. Can you pick a file this time? Please?");
// document.getElementsByClassName('alert')[0].style.display = "block";
return;
}
fs.readFile(fileName[0], 'utf-8', (err, data) => {
if(err){
alert("Woah. Something went wrong. Check the console for more info.");
console.log("An error occured reading the file : " + err.message);
return;
} else {
document.getElementById("code-editor").value = "<pre><code>" + data + "</code></pre>";
}
});
closeSidebar();
}
在此先感谢任何可以帮助解决此问题的人,或者为我指出解决该问题的正确方向! :)
编辑:我已经尝试用
dialog.showOpenDialog
全部在一行上:仍然无济于事。 最佳答案
您收到的“意外的字符串”错误消息与过滤器无关,但与dialog.showOpenDialog的调用不正确有关。
dialog.showOpenDialog (filename, options => { ... });
应该改为:
dialog.showOpenDialog (options, filename => { ... });
关于javascript - Electron dialog.showOpenDialog()过滤器不起作用,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/52235804/