如何将.ss文件中的js-variable传递给Electron中的.html页面?

时间:2018-02-18 15:57:26

标签: javascript electron

我是第一次开发电子应用程序。我使用.js文件中的函数来查找文件夹中的所有文件,并将所有文件写入控制台。

fs.readdir(save_path, function(err, files) {
    if (err) {

    } else {
       for(let projectFile of files)
       {
           fs.readFile(save_path+"\\"+projectFile, function(err, data)
           {
                if(data != null)
                {
                    console.log(projectFile);
                }
            });
       }
    }
});

但有没有办法将此 projectFile 变量发送到html页面?因为有循环,所以我需要在html中使用for循环。

<div class="col-sm-3 text-center" style="background: #34495e; height:2160px;">
        <p class="b wh" style="margin-top: 15%;">Latest projects</p>
        <!-- Projects should be displayed here. I guess there should be some kind of for loop -->
        <hr class="divider">
    </div>

谢谢!

1 个答案:

答案 0 :(得分:1)

一个同步解决方案是使用像

这样的共享对象
// within main.js
var entries = fs.readdirSync(save_path+"\\"+projectFile);
global.sharedObj =  { entries : entries };
// before 
app.on('ready', function() ...
<div class="col-sm-3 text-center" style="background: #34495e; height:2160px;">
    <p class="b wh" style="margin-top: 15%;">Latest projects</p>
    <script>
      const {remote} = require('electron');
      const entries = remote.getGlobal('sharedObj').entries;
      for (var i in entries) {
         document.write('<p>' + entries[i] + '</p>');
      }
     </script>
      <hr class="divider">
  </div>

或者你可以通过ipcMain和ipcRenderer使用消息来实现异步。