普通账号
登录
import {RNGizUserManagerModule} from 'react-native-gizwits-sdk-v5';
const username = ''
const password = ''
const data = await RNGizUserManagerModule.loginWithAccount(username, password);
if (data.success) {
// 成功
}
注册
import {RNGizUserManagerModule} from 'react-native-gizwits-sdk-v5';
const username = ''
const password = ''
const data = await RNGizUserManagerModule.registerWithAccount(username, password);
if (data.success) {
// 成功
}