后端自定义的响应体,使用vue怎么接收
后端返回响应如下:
前端接收代码如下
methods: {
getDataFromApi() {
this.$http.post("/draw/pet",
{
num: this.num, // 搜索条件
uid: this.uid, // 搜索条件
hid: this.hid,
//pageIndex: this.pagination.page,// 当前页
//pageSize: this.pagination.rowsPerPage,// 每页大小
}, {
emulateJSON:true
}).then(resp => { // 这里使用箭头函数
console.log(resp)
this.giftList = resp.data;
this.totalGifts = resp.data.total;
// 完成赋值后,把加载状态赋值为false
//this.loading = false;
})
当后端直接返回list集合时,前端能显示,返回自定义响应时,前端该如何改造