h5 区分ios和安卓
const systemInfo = uni.getSystemInfoSync();
if (systemInfo.platform === "ios" || systemInfo.platform === "android") {}
h5 区分微信小程序与app用条件编译条件编译
js
#ifdef MP-WEIXIN #endif
h5 区分ios和安卓
const systemInfo = uni.getSystemInfoSync();
if (systemInfo.platform === "ios" || systemInfo.platform === "android") {}
h5 区分微信小程序与app用条件编译条件编译
js
#ifdef MP-WEIXIN #endif