|
@@ -2,6 +2,9 @@ import express from 'express'
|
|
|
import cors from 'cors'
|
|
|
import bodyParser from 'body-parser'
|
|
|
import multiparty from 'connect-multiparty'
|
|
|
+
|
|
|
+const port = 3000
|
|
|
+
|
|
|
// 创建 app
|
|
|
const app = express()
|
|
|
// 设置跨域访问
|
|
@@ -15,12 +18,14 @@ app.use(bodyParser.urlencoded({
|
|
|
app.use(bodyParser.json())
|
|
|
// 处理 mutipart/form-data
|
|
|
app.use(multiparty())
|
|
|
+import aisTestRouter from "./ais-test/routers/index.js";
|
|
|
+app.use('/ais-test', aisTestRouter)
|
|
|
// 测试接口能否正常调用
|
|
|
app.get('/info', (req, res) => {
|
|
|
res.send("Hello s是 !")
|
|
|
})
|
|
|
// 启动
|
|
|
-app.listen(3000, () => {
|
|
|
- console.log('express server running at http://127.0.0.1:' + 3000);
|
|
|
+app.listen(port, () => {
|
|
|
+ console.log('express server running at ' + port);
|
|
|
})
|
|
|
|