Alipay
This plugin facilitates the usage of Alipay 支付宝 in an Ionic apps with the integrated AlipaySDK dated on 20180601.
Requires Cordova plugin: cordova-plugin-gubnoi-alipay
. For more info, please see https://github.com/jing-zhou/cordova-plugin-alipay .
https://github.com/jing-zhou/cordova-plugin-alipay
Stuck on a Cordova issue?
If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer premium advisory services for both community plugins and premier plugins.
Installation#
- Capacitor
- Cordova
- Enterprise
$ npm install cordova-plugin-gubnoi-alipay $ npm install @ionic-native/alipay $ ionic cap sync
$ ionic cordova plugin add cordova-plugin-gubnoi-alipay $ npm install @ionic-native/alipay
Ionic Enterprise comes with fully supported and maintained plugins from the Ionic Team. Learn More or if you're interested in an enterprise version of this plugin Contact Us
#
Supported Platforms- Android
- iOS
#
Usage#
ReactLearn more about using Ionic Native components in React
#
Angularimport { Alipay } from '@ionic-native/alipay/ngx';
constructor(private alipay: Alipay) {
//alipayOrder is a string that has been generated and signed by the server side.this.alipay.pay(alipayOrder, success, error) .then(result => { console.log(result); // Success }) .catch(error => { console.log(error); // Failed });
}