forked from uiwjs/react-native-alipay
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.js
More file actions
51 lines (46 loc) · 1.18 KB
/
index.js
File metadata and controls
51 lines (46 loc) · 1.18 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
import { NativeModules, Platform } from 'react-native';
export default class Alipay {
/**
* 支付
* @param orderInfo 支付详情
* @returns result 支付宝回调结果 https://docs.open.alipay.com/204/105301
*/
static alipay(orderInfo) {
return NativeModules.RNAlipay.alipay(orderInfo);
}
/**
* 快速登录授权
* @param authInfoStr 验证详情
* @returns result 支付宝回调结果 详情见 https://opendocs.alipay.com/open/218/105325
*/
static authInfo(authInfoStr) {
return NativeModules.RNAlipay.authInfo(authInfoStr)
}
/**
* 获取当前版本号
* @return 当前版本字符串
*/
static getVersion() {
return NativeModules.RNAlipay.getVersion()
}
/**
* 设置支付宝跳转Scheme,仅 iOS
* @param scheme
* @platform ios
*/
static setAlipayScheme(scheme) {
if (Platform.OS === 'ios') {
NativeModules.RNAlipay.setAlipayScheme(scheme);
}
}
/**
* 设置支付宝沙箱环境,仅 Android
* @param isSandBox
* @platform android
*/
static setAlipaySandbox(isSandBox) {
if (Platform.OS === 'android') {
NativeModules.RNAlipay.setAlipaySandbox(isSandBox);
}
}
}