微信 URL Scheme详细参数、判断是否为微信内置浏览器

weixin:// 打开微信
weixin://dl/scan 扫一扫
weixin://dl/feedback 反馈
weixin://dl/moments 朋友圈
weixin://dl/settings 设置
weixin://dl/notifications 消息通知设置
weixin://dl/chat 聊天设置
weixin://dl/general 通用设置
weixin://dl/officialaccounts 公众号
weixin://dl/games 游戏
weixin://dl/help 帮助
weixin://dl/feedback 反馈
weixin://dl/profile 个人信息
weixin://dl/features 功能插件

data(){
	return{
		url: 'weixin://'
	}
},
methods:{
	clickWechat() { //打开外部微信
		plus.runtime.openURL(this.url, function(res) {
			console.log(res);
		});
	}
}


判断是否为微信内置浏览器

var agent = navigator.userAgent.toLowerCase();
	if (agent.match(/MicroMessenger/i) == "micromessenger") {
		console.log("是在微信内置浏览器里面")
	} else {
		console.log("不在微信内置浏览器里面")
}
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章