fxjsbridge
v1.6.32
Published
提供一些常用的JS调用iOS/Android原生接口的能力
Downloads
10
Readme
FxJSBridge
- 提供一些常用的js调用iOS/Android原生接口的能力
- 需要配合iOS/Android专用APP客户端使用
使用方法
- 引入开发包
// 方式1: 适用于所有项目
<script src="https://unpkg.com/fxjsbridge@latest/src/index.min.js"></script>
// 方式2: 在main.ts文件中引入,用于 vue,react等项目
require('fxjsbridge')
- 使用
JSBridge.xxx
或fx.xxx
即可使用相关api - typescript支持
- 在项目的
tsconfig.json
配置文件的compilerOptions.types
处添加fxjsbridge
提供的接口
接口具体的使用方式参考
index.d.ts
文件
- openURL
- replace
- closeWindow
- setLocalStorage
- getLocalStorage
- removeLocalStorage
- setSessionStorage
- getSessionStorage
- removeSessionStorage
- showLoading
- showToast
- showSuccess
- showError
- showHUD
- hideHUD
- showModal
- setNavigationBarStyle
- showActionSheet
- previewImage
- chooseImage
- chooseMedia
- chooseFile
- saveImageToPhoto
- scanQRCode
- getLocation
- getUUID
- setClipboardData
- getClipboardData
- getNetworkType
- request
- uploadFile
- disableStickyViewForSpecificWhenKeyboardIsUp
- enableStickyViewForSpecificWhenKeyboardIsUp
- startFacialRecognitionVerify
- prepareRealPersonVerification
- startRealPersonVerification
- checkIsBiometricEnrolledInDevice
- startBiometricAuthentication
- getSystemInfo
- callPhone
- sendSMS
- sendMail ...