We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
我注意到在支付宝SDK集成到Android后,调用alipay.trade.app.pay(app支付接口2.0)接口,是应该有错误日志输出的,但是我看你Flutter插件中好像并没有对错误日志进行输入或者其他处理,导致当接口调用失败时无法获取异常状态码.
@override Future<void> pay({ required String orderInfo, bool dynamicLaunch = false, bool isShowLoading = true, }) { return methodChannel.invokeMethod<void>( 'pay', <String, dynamic>{ 'orderInfo': orderInfo, 'dynamicLaunch': dynamicLaunch, 'isShowLoading': isShowLoading, }, ); }
你好像只是做了一个参数的传递.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
我注意到在支付宝SDK集成到Android后,调用alipay.trade.app.pay(app支付接口2.0)接口,是应该有错误日志输出的,但是我看你Flutter插件中好像并没有对错误日志进行输入或者其他处理,导致当接口调用失败时无法获取异常状态码.
你好像只是做了一个参数的传递.
The text was updated successfully, but these errors were encountered: