1 Star 0 Fork 0

yaozhongnan/wd-app-server

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
app.js 1.01 KB
一键复制 编辑 原始数据 按行查看 历史
yaozhongnan 提交于 2018-10-20 17:30 . 编写获取问题接口
import express from 'express'
import router from './routes'
import config from './config'
import bodyParser from 'body-parser'
import './db/db'
import path from 'path'
const app = express()
// 公开 public 目录
app.use('/public/', express.static(path.join(__dirname, './public/')));
// 配置 body-parser
app.use(bodyParser.urlencoded({ extended:false }))
app.use(bodyParser.json())
// 解决前端跨域
app.all('*', (req, res, next) => {
res.header("Access-Control-Allow-Origin", req.headers.Origin || req.headers.origin);
res.header("Access-Control-Allow-Headers", "Content-Type, Authorization, X-Requested-With");
res.header("Access-Control-Allow-Methods", "PUT,POST,GET,DELETE,OPTIONS");
res.header("Access-Control-Allow-Credentials", true); //可以带cookies
res.header("X-Powered-By", '3.2.1')
if (req.method == 'OPTIONS') {
res.sendStatus(200);
} else {
next();
}
});
router(app)
app.listen(config.port, () => {
console.log(`the server has already running at http://${config.host}:${config.port}`);
})
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/zahirah/wd-app-server.git
git@gitee.com:zahirah/wd-app-server.git
zahirah
wd-app-server
wd-app-server
master

搜索帮助