Skip to main content

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?

Don't waste precious time on plugin issues.

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#

$ npm install cordova-plugin-gubnoi-alipay
$ npm install @ionic-native/alipay
$ ionic cap sync

Supported Platforms#

  • Android
  • iOS

Usage#

React#

Learn more about using Ionic Native components in React

Angular#

import { 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
});
}