美文网首页
uni-app中退出系统的实现

uni-app中退出系统的实现

作者: 养樂多_566c | 来源:发表于2021-04-09 09:33 被阅读0次

    app中退出系统

        // #ifdef APP-PLUS
        if (plus.os.name.toLowerCase() === 'android') {
            plus.runtime.quit();
        } else {
            const threadClass = plus.ios.importClass("NSThread");
            const mainThread = plus.ios.invoke(threadClass, "mainThread");
            plus.ios.invoke(mainThread, "exit");
        }
        // #endif
    
        // #ifdef H5
            var userAgent = navigator.userAgent;
        if (userAgent.indexOf(“Firefox”) != -1 || userAgent.indexOf(“Chrome”) != -1) return window.location.href = ”about: blank”;
        if (userAgent.indexOf(‘Android’) > -1 || userAgent.indexOf(‘Linux’) > -1) return window.opener = null,window.open(‘about: blank’, ’_self’, ”).close();
        return window.opener = null,window.open(“about: blank”, “_self”),window.close();
        // #endif
    

    相关文章

      网友评论

          本文标题:uni-app中退出系统的实现

          本文链接:https://www.haomeiwen.com/subject/vccikltx.html