logo

Backend 2

 
notion image

router模块化思想

上节课backend_class_1根据features创建了不同的role. 其中回调函数async function要提取出放到新文件夹Controllers中.
notion image

课上代码

backend根目录下index.js (可以用server.js避免歧义)

//npm init //npm i express cors axios json-server //npm i nodemon -D //npm run json:server //npm run server (npm nodemon index.js)在package.json script里面修改 const express = require("express"); const cors = require("cors"); const router = require("./routes/index"); const { handleErrors } = require("./middleware/errorMiddleware"); const app = express(); app.use(cors()); // 解决跨域问题 app.use(express.json()); //允许解析使用json数据 //router需要挂在在数据解析(json)和跨域全局中间件(cors)后面 app.use("/api", router); // 提取公共部分, 这样每个路由不需要重复写"/api" // use error middleware at the end (全局中间件) app.use(handleErrors); const PORT = 80; app.listen(PORT, function () { console.log("Server is running on http://localhost:80"); }); //app.use(express.json())// parse JSON requests //app.use(express.urlencoded({extended:true})) //parse URL-encoded requests //app.use(cors()) //必须在路由之前挂在,解决跨域问题 //app.use(authMiddleware);// custom authentication middleare 比如用户验证,api授权之类的 //app.use(routes) // route handlers //app.use(handleErrors) // error handling middleware (at the end) error中间件在路由后挂载
本章目录
    logo

    Follow Us

    linkedinfacebooktwitterinstagramweiboyoutubebilibilitiktokxigua

    We Accept

    /image/layout/pay-paypal.png/image/layout/pay-visa.png/image/layout/pay-master-card.png/image/layout/pay-airwallex.png/image/layout/pay-alipay.png

    地址

    Level 10b, 144 Edward Street, Brisbane CBD(Headquarter)
    Level 2, 171 La Trobe St, Melbourne VIC 3000
    四川省成都市武侯区桂溪街道天府大道中段500号D5东方希望天祥广场B座45A13号
    Business Hub, 155 Waymouth St, Adelaide SA 5000

    Disclaimer

    footer-disclaimerfooter-disclaimer

    JR Academy acknowledges Traditional Owners of Country throughout Australia and recognises the continuing connection to lands, waters and communities. We pay our respect to Aboriginal and Torres Strait Islander cultures; and to Elders past and present. Aboriginal and Torres Strait Islander peoples should be aware that this website may contain images or names of people who have since passed away.

    匠人学院网站上的所有内容,包括课程材料、徽标和匠人学院网站上提供的信息,均受澳大利亚政府知识产权法的保护。严禁未经授权使用、销售、分发、复制或修改。违规行为可能会导致法律诉讼。通过访问我们的网站,您同意尊重我们的知识产权。 JR Academy Pty Ltd 保留所有权利,包括专利、商标和版权。任何侵权行为都将受到法律追究。查看用户协议

    © 2017-2024 JR Academy Pty Ltd. All rights reserved.

    ABN 26621887572