express - node.js 后台只提供restfulAPI,到底是个什么样的设计?
黄舟
黄舟 2017-04-17 14:55:37
0
2
822

这是我前台发起的请求测试.

    this.$http
      .get('http://localhost:3000/api/testGet', {
        params: {
          name: 'get'
        }
      })
      .then(function (data) {
        this.Get = data.body.msg
      })

    this.$http
      .delete('http://localhost:3000/api/testDelete', {
        params: {
          name: 'delete'
        }
      })
      .then(function (data) {
        this.Delete = data.body.msg
      })

    this.$http
      .post('http://localhost:3000/api/testPost', {
        name: 'post'
      })
      .then(function (data) {
        this.Post = data.body.msg
      })

    this.$http
      .put('http://localhost:3000/api/testPut', {
        name: 'put'
      })
      .then(function (data) {
        this.Put = data.body.msg
      })

这是我后台的处理

router.get('/testGet', function (req, res, next) {
  res.send({msg: 'get '});
})

router.delete('/testDelete', function (req, res, next) {
  res.send({msg: 'delete '});
})

router.post('/testPost', function (req, res, next) {
  res.send({msg: 'post '});
})

router.put('/testPut', function(req, res, next) {
  res.send({msg: 'put '});
})

我不太明白,是否根据 函数的功能来决定这个方法是属于get,delete,put,post中的哪一种?目前 我后台express只提供api,路由,页面都由前台完成。

黄舟
黄舟

人生最曼妙的风景,竟是内心的淡定与从容!

全部回覆(2)
黄舟

是的POST,DELETE,PUT,GET分別對應增刪改查。

刘奇

個人理解:
例如要操作test。那麼,路由就應該是類似這個樣子/api/test,前台使用get,post,put,delete等即可訪問這個路由完成業務。而不應該再是api/testGETapi/testPost

熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板
關於我們 免責聲明 Sitemap
PHP中文網:公益線上PHP培訓,幫助PHP學習者快速成長!