使用web-view内嵌h5页面,在h5页面跳转另外的一个微信小程序可以使用url scheme吗?
const browser = navigator.userAgent.toLowerCase();
if (browser.match(/MicroMessenger/i) == "micromessenger") {
window.location.href =
"weixin://dl/business/?appid=wx6a587c896b06f54d&path=pages/map/map";
}