请稍等 ...
×

采纳答案成功!

向帮助你的同学说点啥吧!感谢那些助人为乐的人

正在回答 回答被采纳积分+3

4回答

letconst 2019-10-12 18:16:28

我也遇到这个问题,在script中require无效,src可以,但最后alert出'undefined'。

https://img1.sycdn.imooc.com/szimg/5da1a7cd0891186607860487.jpg

https://img1.sycdn.imooc.com//szimg/5da1a7cd085300af07200639.jpg

https://img1.sycdn.imooc.com//szimg/5da1a7e7081813fd05160100.jpg


0 回复 有任何疑惑可以回复我~
  • 我自己解决了,单词拼写问题,少了个s:
    alert(process.version.node) => alert(process.versions.node)
    回复 有任何疑惑可以回复我~ 2019-10-12 20:13:34
飘渺的心意 2019-09-09 22:22:28

script src引用可以

0 回复 有任何疑惑可以回复我~
提问者 菜鸟x 2019-08-13 09:34:08
const { app, BrowserWindow } = require('electron')

app.on('ready', () => {
const mainWindow = new BrowserWindow({
width: 800,
height: 600,
webPreference: {
nodeIntegration: true
}
})
mainWindow.loadFile('index.html')
const secondWindow = new BrowserWindow({
width: 300,
height: 300,
webPreference: {
nodeIntegration: true
},
parent: mainWindow
})
secondWindow.loadFile('second.html')
})

<!DOCTYPE html>

<html lang="en">

<head>

<meta charset="UTF-8" />

<meta name="viewport" content="width=device-width, initial-scale=1.0" />

<meta http-equiv="X-UA-Compatible" content="ie=edge" />

<title>Hellow World!</title>

</head>

<body>

<h1>Hellow World!</h1>

<script>

require('./renderer.js')

</script>

</body>

</html>

// This file is required by the index.html file and will
// be executed in the renderer process for that window.
// All of the Node.js APIs are available in this process.
alert(process.versions.node)
alert(111111)


0 回复 有任何疑惑可以回复我~
张轩 2019-08-12 22:30:20

同学是否可以提供代码 看下

0 回复 有任何疑惑可以回复我~
  • 提问者 菜鸟x #1
    已经贴上来了
    回复 有任何疑惑可以回复我~ 2019-08-13 09:35:11
  • motys #2
    引入没有弹框,怎么回事啊,老师
    回复 有任何疑惑可以回复我~ 2019-12-30 17:48:06
问题已解决,确定采纳
还有疑问,暂不采纳
意见反馈 帮助中心 APP下载
官方微信