You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
259 B
JavaScript
11 lines
259 B
JavaScript
|
7 months ago
|
const express = require('express');
|
||
|
|
const router = express.Router();
|
||
|
|
|
||
|
|
/* GET home page. */
|
||
|
|
router.get('/hello', function(req, res, next) {
|
||
|
|
//res.render('index', { title: 'Express' });
|
||
|
|
res.json({message:'Hello 长乐未央'})
|
||
|
|
});
|
||
|
|
|
||
|
|
module.exports = router;
|