微信小程序支付功能打通
This commit is contained in:
@@ -18,6 +18,8 @@ export function isWechatBrowser(): boolean {
|
||||
|
||||
/** 是否微信小程序 web-view 或独立小程序环境 */
|
||||
export function isMiniProgram(): boolean {
|
||||
const g = globalThis as typeof globalThis & { wx?: { requestPayment?: unknown } };
|
||||
if (g.wx?.requestPayment) return true;
|
||||
if (typeof window === 'undefined') return false;
|
||||
const ua = navigator.userAgent.toLowerCase();
|
||||
return ua.includes('miniprogram') || (window as Window & { __wxjs_environment?: string }).__wxjs_environment === 'miniprogram';
|
||||
|
||||
Reference in New Issue
Block a user