微信小程序跳转到微信公众号

时间:2020-11-01 10:36:27   收藏:0   阅读:43

我这里是uniapp里的操作

微信开发者工具配置

微信开发公众平台-小程序

示例代码(uniapp)

<view style="width:100%;position:relative;height:400rpx;background:gray;">
 <official-account 
 @load="bindload"      //成功
 @error="binderror"    //失败
  />
export default {
	methods: {
		bindload(e){
			console.log(e.detail)
		},
		binderror(e){
			console.log(e.detail)
		},
	}
}

事件

属性名 类型 说明
bindload EventHandle 组件加载成功时触发
binderror EventHandle 组件加载失败时触发

detail 对象

属性名 类型 说明
status Number 状态码
errMsg String 错误信息

status 有效值

说明
-2 网络错误
-1 数据解析错误
0 加载成功
1 小程序关注公众号功能被封禁
2 关联公众号被封禁
3 关联关系解除或未选中关联公众号
4 未开启关注公众号功能
5 场景值错误
6 重复创建
评论(0
© 2014 mamicode.com 版权所有 京ICP备13008772号-2  联系我们:gaon5@hotmail.com
迷上了代码!