uniapp判断设备是否app
文章描述:
uniapp在开发的时候判断不同的设备运行不同代码
template
<template>
<view>
<!-- #ifdef MP-WEIXIN -->
<view>
wechat
</view>
<!-- #endif -->
<!-- #ifdef APP-PLUS -->
<view>
h5+ app
</view>
<!-- #endif -->
</view>
</template>
script
export default {
data() {
return {
title: 'about'
}
},
onLoad() {
//#ifdef MP-WEIXIN
console.log("wx");
//#endif
//#ifdef APP-PLUS
console.log("h5+ app");
//#endif
//#ifdef H5
//#endif
//#ifdef MP-ALIPAY
console.log('支付宝')
//#endif
},
methods: {
}
}
标签快捷使用方法:
在Hbuildx的里面直接输入 ifdef 会有提示,如没有提示,可使用Ctrl + Alt + / 会弹出提示
发布时间:2022/04/27
发表评论