任何人都可以解释为什么这段代码不起作用?我试图在文件协议中要求渲染器(没有快速静态服务器),它很好,但是当我用http协议执行此操作时,我得到了Uncaught Error: Cannot find module './renderer'
!
有没有办法在http中使用自定义模块?
谢谢...
结构
- project
+ node_modules
- app.js
- index.html
- package.json
- renderer.js
app.js
const { app, BrowserWindow } = require('electron');
const express = require('express');
const path = require('path');
const url = require('url');
const server = express();
server.use(express.static(__dirname));
app.on('ready', () => server.listen(3000, createWindow));
function createWindow() {
let win = new BrowserWindow({ width: 800, height: 600 });
win.loadURL(url.format({
protocol: 'http',
hostname: 'localhost',
port: 3000
}));
win.webContents.openDevTools();
win.on('closed', function () {
win = null;
app.quit();
});
}
的index.html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Test</title>
</head>
<body>
<div id="root"></div>
<script>
require('./renderer');
</script>
</body>
</html>
renderer.js
var root = document.getElementById('root');
root.innerHTML = 'Hello, World !';
答案 0 :(得分:0)
就像你对任何其他模块一样要求它并指定路径,在你的情况下:
require('./renderer')
答案 1 :(得分:0)
在主应用程序设置文件上设置节点集成,并使用:
var dynamicVal = (dynamic)enumVal;
dynamicVal.value__ = 0;
var tempEnum = (Enum)dynamicVal;