我们提供消息推送系统招投标所需全套资料,包括消息推送系统介绍PPT、消息推送系统产品解决方案、
消息推送系统产品技术参数,以及对应的标书参考文件,详请联系客服。
const express = require('express');
const bodyParser = require('body-parser');
const app = express();
app.use(bodyParser.json());
let students = [];
app.post('/register', (req, res) => {
const student = req.body;
students.push(student);
res.status(201).send({ message: 'Student registered successfully.' });
});
app.listen(3000, () => {
console.log('Server is running on port 3000');
});
]]>