1 Star 0 Fork 1

zwyboom/gzh

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
index.js 1.24 KB
一键复制 编辑 原始数据 按行查看 历史
tcb 提交于 2022-05-04 14:54 . init
const path = require("path");
const express = require("express");
const cors = require("cors");
const morgan = require("morgan");
const { init: initDB, Counter } = require("./db");
const logger = morgan("tiny");
const app = express();
app.use(express.urlencoded({ extended: false }));
app.use(express.json());
app.use(cors());
app.use(logger);
// 首页
app.get("/", async (req, res) => {
res.sendFile(path.join(__dirname, "index.html"));
});
// 更新计数
app.post("/api/count", async (req, res) => {
const { action } = req.body;
if (action === "inc") {
await Counter.create();
} else if (action === "clear") {
await Counter.destroy({
truncate: true,
});
}
res.send({
code: 0,
data: await Counter.count(),
});
});
// 获取计数
app.get("/api/count", async (req, res) => {
const result = await Counter.count();
res.send({
code: 0,
data: result,
});
});
// 小程序调用,获取微信 Open ID
app.get("/api/wx_openid", async (req, res) => {
if (req.headers["x-wx-source"]) {
res.send(req.headers["x-wx-openid"]);
}
});
const port = process.env.PORT || 80;
async function bootstrap() {
await initDB();
app.listen(port, () => {
console.log("启动成功", port);
});
}
bootstrap();
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/zwyboom/gzh.git
git@gitee.com:zwyboom/gzh.git
zwyboom
gzh
gzh
master

搜索帮助