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):参数作为形参传入的主要内容,如果未能解决你的问题,请参考以下文章

形参和实参

C 语言结构体 ( 结构体作为函数参数 | 结构体指针作为函数参数 )

C数组做形参

函数的实参 函数的形参 闭包 js

指针做参数的动态内存分配与二重指针(下)

c语言中数组名作为函数参数