我有一个带有超链接的 html 文件,它调用 javascript 函数。javascript 函数必须调用一个批处理文件......这一切都应该从 Node.js 发生
<html>
<head>
<title>sample</title>
<script src="child.js"></script>
</head>
<body>
<a href="#" onclick="call()">click here</a>
</body>
</html>
child.js
function call()
{
var spawn = require('child_process').spawn,
ls = spawn('append.bat');
}
我收到这样的错误......
ReferenceError: require is not defined
var spawn = require('child_process').spawn,
任何答案..请回复...