vue -ui
vue create vue-demo
//启动vue: npm run serve
vue add axios
1. 安装Node.js
npm -v
2. 配置环境变量
用户变量Path: D:\nodejs\node_global
vue添加信息
_this.$router.push('/show');
//后端SpringBoot分页用GetMapping
@GetMapping("/showGoods/{page}/{pageSize}")
public PageInfo showGoods(@PathVariable("page") int page, @PathVariable("pageSize") int pageSize){
PageHelper.startPage(page,pageSize);
return new PageInfo(goodsDao.show());
}
//前端VUE
const _this = this
axios.get('http://localhost:9992/goods/showGoods/1/2').then(function (resp) {
console.log("aaa:"+resp.data.list);
_this.tableData = resp.data.list;
_this.query.pageSize=resp.data.pageSize
_this.pageTotal = resp.data.total;
})
//prop一一对应
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)