function global_selectByPage(param){
var _this = this;
axios({
method: "post",
url: "http://localhost:80//select?currentPage="+this.currentPage+"&pageSize=" + this.pageSize,
data:this.param
}).then(function (resp) {
_this.tableData = resp.data.rows;
_this.totalCount = resp.data.totalCount;
})
}
调用时获取不到this.currentPage和 this.pageSize,
作用域的问题。
你先把你调用的地方代码贴出来。