获取url的时候去掉#号后面的数据
let url = window.location.href.split('#')[0]
1、检查后台是否设置:右上角公众号名称--功能设置--JS接口安全域名
2、检查代码里的appid和公众号后台的id是否一致
iOS有问题可以看这个
url使用下面方式获取需要使用encodeURIComponent转换
let url1 = encodeURIComponent(window.location.href.split('#')[0]);
附上校验微信和ios的处理方式 let ua = navigator.userAgent.toLowerCase(); let isWeixin = ua.indexOf('micromessenger') !== -1; let url1; if (isWeixin) { let isiOS = !!ua.match(/\(i[^;]+;( U;)? CPU.+Mac OS X/); //ios终端 if (isiOS) { } else { } }