赞
踩
应该用一个router, 然后连续点:
router.get() .post() .get() .post()
而不是像下面这样每处理一个URL就去:
router.get()
router.post()
- // 应该是这样:
-
- router.get('/simple/get', function(req, res) {
- res.json({
- msg: `hello world`
- })
- })
-
- .post('/base/post', function(req, res) {
- res.json(req.body)
- })
-
-
- // 而不应该是这样:
-
- router.get('/simple/get', function(req, res) {
- res.json({
- msg: `hello world`
- })
- })
-
- router.post('/base/post', function(req, res) {
- res.json(req.body)
- })
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。