H5 determines whether the current environment is a WeChat applet

H5 determines whether the current environment is a WeChat public account


Scenes

H5 needs to determine whether the current environment is a WeChat official account, and then make some interactive adjustments.


code

isWxMiniCodeWebviewEnv() {
    
    
      return navigator.userAgent.match(/miniprogram/i) || window.__wxjs_environment == 'miniprogram'
}

Guess you like

Origin blog.csdn.net/qq_38374286/article/details/134378852