reactjs 如何检查互联网断开连接,但VPN连接在React原生应用程序

hwamh0ep  于 2022-12-29  发布在  React
关注(0)|答案(1)|浏览(247)

我连接到互联网,然后连接到VPN现在,我断开了互联网,并检查了我的应用程序中的网络连接状态,我正在连接到netinfo.谁能帮助我们知道如何才能知道,如果互联网是连接或没有当VPN连接?

mwg9r5ms

mwg9r5ms1#

您可以使用此软件包https://github.com/kzlsnn/react-native-vpn-detect

import Security from "react-native-vpn-detect";

async function checkSecurity() {
    let detectVPN = await Security.detectVPN().then(response => { return response });
    let detectProxy = await Security.detectProxy().then(response => { return response });
}
checkSecurity();

相关问题