1 Star 0 Fork 15

辉仔/life-amp-activity

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
app.js 998 Bytes
一键复制 编辑 原始数据 按行查看 历史
青ツ玉 提交于 2020-04-28 15:27 . 增加readme和格式化代码
const path = require('path')
const express = require('express')
const fs = require("fs")
const bodyParser = require('body-parser');//用于req.body获取值的
// 创建 application/x-www-form-urlencoded 编码解析
const app = new express();
const port = process.env.PORT || 8080;
app.use(bodyParser.json());
app.use(bodyParser.urlencoded({ extended: true }));
app.use(express.static('public'));
app.get('/*', (req, res) => {
res.sendFile(path.join(__dirname, 'views', 'index.html'));
})
app.post('/submit', (req, res) => {
let data = '姓名:' + req.body.name + ',手机号:' + req.body.phone + '\n';
fs.appendFile('data.txt', data, function (err) {
if (err) {
res.json({ code: 500 })
return console.error(err);
} else {
res.json({ code: 200 })
}
});
})
app.listen(port, (error) => {
if (error) {
console.error(error);
} else {
console.info('==> Listening on port %s. Open up http://localhost:%s/ in your browser.', port, port);
}
});
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
JavaScript
1
https://gitee.com/happyhuizai/life-amp-activity.git
[email protected]:happyhuizai/life-amp-activity.git
happyhuizai
life-amp-activity
life-amp-activity
gitlab

搜索帮助