1
htmlサイトの変数 "node"をnode.jsに渡すにはどうすればよいですか?Node.jsとHtmlの間でデータを渡す
マイHTMLページ:search.htmlの
<html>
<body>
<div id="content">
<p>Name:</p>
<input id="begriff" type="name" name="" value="">
<button style="margin-top: 50px;" onclick="information()" >send</button>
</div>
<script type="text/javascript">
var term;
function information() {
term = document.getElementById("name").value;
}
</script>
</body>
</html>
私のNode.js:私はPlaystoreでアプリを '用語' 変数を検索し、情報を提供したい をapp.js htmlに戻ってどこかにそれを印刷してください。
var gplay = require('google-play-scraper');
gplay.search({
term: "Html 'Term' variable",
num: 1,
fullDetail: false,
price: "free"
}).then(console.log, console.log);