React开发(188):参数作为形参传入
Posted 前端小歌谣
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了React开发(188):参数作为形参传入相关的知识,希望对你有一定的参考价值。
handleGetpageWalletAccount = async (params) => {
const { pageIndex, pageSize, customerType, customerName, mobile } = this.state;
try {
const res = await getpageWalletAccount({
pageIndex: this.state.pageIndex,
pageSize: this.state.pageSize,
...params,
});
console.log(res.data);
this.setState({ balanceList: res.data.records });
this.setState({ total: res.data.total });
} catch (error) {}
};
以上是关于React开发(188):参数作为形参传入的主要内容,如果未能解决你的问题,请参考以下文章