当前位置:   article > 正文

vue 中axios get方式怎样发送对象及后端怎样接收_vue get方法传对象

vue get方法传对象
  1. axios get方式发送对象,适用于restful方式
    1. var _this = this;
    2. axios({
    3. method: "get",
    4. url: "http://localhost:80/Spring_05_war/workers/selectByCondition",
    5. params: _this.worker
    6. }).then(function (resp) {
    7. _this.tableData = resp.data;
    8. })

  2. 后端接收方式
    1. @GetMapping("/selectByCondition")
    2. public List<Worker> selectByCondition( Worker worker){
    3. System.out.println(worker);
    4. return workerService.selectByCondition(worker);
    5. }

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/菜鸟追梦旅行/article/detail/426934
推荐阅读
相关标签
  

闽ICP备14008679号