app.js 631 B

12345678910111213141516171819202122232425262728
  1. import express from 'express'
  2. import cors from 'cors'
  3. import bodyParser from 'body-parser'
  4. import multiparty from 'connect-multiparty'
  5. const port = 3000
  6. // 创建 app
  7. const app = express()
  8. // 设置跨域访问
  9. app.use(cors())
  10. // 处理POST参数
  11. // 处理 x-www-form-urlencoded
  12. app.use(bodyParser.urlencoded({
  13. extended:true
  14. }));
  15. // 处理 application/json
  16. app.use(bodyParser.json())
  17. // 处理 mutipart/form-data
  18. app.use(multiparty())
  19. import shipTestRouter from "./ship-test/routers/index.js";
  20. app.use('/ship-test', shipTestRouter)
  21. // 启动
  22. app.listen(port, () => {
  23. console.log('express server running at ' + port);
  24. })