赞
踩
- var _this = this;
- axios({
- method: "get",
- url: "http://localhost:80/Spring_05_war/workers/selectByCondition",
- params: _this.worker
- }).then(function (resp) {
- _this.tableData = resp.data;
- })
- @GetMapping("/selectByCondition")
- public List<Worker> selectByCondition( Worker worker){
- System.out.println(worker);
- return workerService.selectByCondition(worker);
- }
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。