をサブアプリの目的は何ですか、次の例があります:ハンドル/ <a href="http://expressjs.com/en/4x/api.html#middleware-callback-function-examples" rel="nofollow noreferrer">express documentation</a>で
var subApp = express();
subApp.get('/', function (req, res, next) {
next();
});
app.use(subApp);
app.get('/',...)
がうまくやるだろうというときsubApp
を作成する目的は何ですか?
。 –