按下按钮时 Express.js 在服务器端运行功能

问题描述 投票:0回答:0

我的网站上有一个按钮,我想在按下按钮时在

index.js
中运行一个功能。

这是 index.js

const express = require('express');
const bodyParser = require('body-parser');

const app = express();
app.use(bodyParser.json());

app.use(bodyParser.urlencoded({ extended: true }));

app.use(express.static('public'));

app.listen(3000, () => {
    console.log('Listening!')
})

app.get('/', (req, res) => {
    res.sendFile('index.html')
})

按钮在 index.html 中,但我想在 index.js 中运行函数 我如何与 index.js 通信以告诉它在按下按钮时运行函数?

javascript html express button server
© www.soinside.com 2019 - 2024. All rights reserved.