search

Home  >  Q&A  >  body text

node.js - express框架构架的nodejs企业网站,请问如何控制路由?

express框架构架的nodejs企业网站,请问如何控制路由?

.get(function(req, res) {});
.put(function(req, res) {});
.post(function(req, res) {});
.delete(function(req, res) {});

有没有方法总结起来的?有什么好的模块推荐吗?管理我的路由?
如果没有,可否提供一个比较合适的思路? 谢谢了

黄舟黄舟2824 days ago608

reply all(1)I'll reply

  • 迷茫

    迷茫2017-04-17 13:03:26

    You can write all callback functions to the router-action directory, and then call them through routerAction.functionName

    var express = require('express'),
        router = express.Router(),
        routerAction = require('../router-action');
    
    router.get('/', routerAction.index);

    reply
    0
  • Cancelreply