uniapp判断当前环境是ios还是android

判断是苹果:

uni.getSystemInfoSync().platform == 'ios'

安卓:

uni.getSystemInfoSync().platform === 'android'

 

switch(uni.getSystemInfoSync().platform){

    case 'android':

       console.log('运行Android上')

       break;

    case 'ios':

       console.log('运行iOS上')

       break;

    default:

       console.log('运行在开发者工具上')

       break;

}

posted @ 2020-03-27 10:13  前端HL  阅读(8835)  评论(0编辑  收藏  举报