1.没有关注过的用户,在页面中使用以下代码,'关注'按钮 显示不出来: window.location.href = https://mp.weixin.qq.com/mp/profile_ext?action=home&__biz=MzU4OTQxNjkxMw==&scene=110#wechat_redirect
2.没有关注过的用户,用户在微信中直接访问以下链接,'关注' 按钮可以正常显示: https://mp.weixin.qq.com/mp/profile_ext?action=home&__biz=MzU4OTQxNjkxMw==&scene=110#wechat_redirect
请问'关注'按钮 显示不出来,是怎么回事呢?
你们看我的代码就知道了。搞了2个小时呢。
if ($shop["SI_ID"] == '1016') {
trace("跳转url:"."https://mp.weixin.qq.com/mp/profile_ext?action=home&__biz=MzUzMjg4MTI3OQ==&scene=123&from=singlemessage#wechat_redirect");
//$url="https://mp.weixin.qq.com/mp/profile_ext?action=home&__biz=MzUzMjg4MTI3OQ==&scene=123&from=singlemessage#wechat_redirect";
//return redirect($url);
//echo "<script>window.location.href = 'https://mp.weixin.qq.com/mp/profile_ext?action=home&__biz=MzUzMjg4MTI3OQ==&from=singlemessage#wechat_redirect';</script>";
header("Location: https://mp.weixin.qq.com/mp/profile_ext?action=home&__biz=MzUzMjg4MTI3OQ==&from=singlemessage#wechat_redirect");
exit();
} else {
$this->error("请关注公众号", "weixin/login/fail");
}
大佬,解决了么
大佬有解决这个问题吗
我也遇到同样的问题,关注中!
这边测试,都可以显示哈
index.html 文件内容如下:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
</head>
<body>
<button onclick="fun()">按钮-跳转微信关注</button>
<a href="https://mp.weixin.qq.com/mp/profile_ext?action=home&__biz=MzU4OTQxNjkxMw==&scene=110#wechat_redirect"
>A标签-跳转微信关注</a>
</body>
</html>
<script>
function fun() {
window.location.href =
"https://mp.weixin.qq.com/mp/profile_ext?action=home&__biz=MzU4OTQxNjkxMw==&scene=110#wechat_redirect";
}
</script>