使用 React 和 Solidity 获取数据时出错
Error obtain data with React and Solidity
在我面前调用时(React)
我的代码:
const checkAllowance = await contract.GetAllowance.call({
from: account
}).catch((error) => {
errorAlert(error.message);
});
您从该电话中获得的号码是 BigNumber
。尝试用 .toString()
.
转换它
在我面前调用时(React)
我的代码:
const checkAllowance = await contract.GetAllowance.call({
from: account
}).catch((error) => {
errorAlert(error.message);
});
您从该电话中获得的号码是 BigNumber
。尝试用 .toString()
.