diff --git a/packages/common/utils.ts b/packages/common/utils.ts index 1256a476..fe3f44e6 100644 --- a/packages/common/utils.ts +++ b/packages/common/utils.ts @@ -1,7 +1,8 @@ import { isDef, isNumber, isPlainObject, isPromise } from './validator'; -import { canIUseGroupSetData, canIUseNextTick } from './version'; +import { canIUseGroupSetData, canIUseNextTick, getSystemInfoSync } from './version'; export { isDef } from './validator'; +export { getSystemInfoSync } from './version'; export function range(num: number, min: number, max: number) { return Math.min(Math.max(num, min), max); @@ -17,15 +18,6 @@ export function nextTick(cb: (...args: any[]) => void) { } } -let systemInfo: WechatMiniprogram.SystemInfo; -export function getSystemInfoSync() { - if (systemInfo == null) { - systemInfo = wx.getSystemInfoSync(); - } - - return systemInfo; -} - export function addUnit(value?: string | number): string | undefined { if (!isDef(value)) { return undefined; diff --git a/packages/common/version.ts b/packages/common/version.ts index 0432c332..e8ee1868 100644 --- a/packages/common/version.ts +++ b/packages/common/version.ts @@ -1,4 +1,11 @@ -import { getSystemInfoSync } from './utils'; +let systemInfo: WechatMiniprogram.SystemInfo; +export function getSystemInfoSync() { + if (systemInfo == null) { + systemInfo = wx.getSystemInfoSync(); + } + + return systemInfo; +} function compareVersion(v1, v2) { v1 = v1.split('.'); @@ -50,7 +57,11 @@ export function canIUseGroupSetData() { } export function canIUseNextTick() { - return wx.canIUse('nextTick'); + try { + return wx.canIUse('nextTick'); + } catch (e) { + return gte('2.7.1'); + } } export function canIUseCanvas2d() {