问题遇到的现象和发生背景
需要在原有的后台管理系统上 加一个H5页面加入到企业微信上,目前是调用企业微信的wx.config和wx.agentConfig 报错
问题相关代码,请勿粘贴截图
methods{
async EnterpriseWeChat() {
wx.config({
beta: true, // 必须这么写,否则wx.invoke调用形式的jsapi会有问题
debug: true, // 开启调试模式,调用的所有api的返回值会在客户端alert出来,若要查看传入的参数,可以在pc端打开,参数信息会通过log打出,仅在pc端时才会打印。
appId: this.appId, // 必填,企业微信的corpID
timestamp: this.timestamp, // 必填,生成签名的时间戳
nonceStr: this.nonceStr, // 必填,生成签名的随机串
signature: this.signature, // 必填,签名,见 附录-JS-SDK使用权限签名算法
jsApiList: ["theCustomerDetailsApi"], // 必填,需要使用的JS接口列表,凡是要调用的接口都需要传进来
});
wx.ready(function () {
// config信息验证后会执行ready方法,所有接口调用都必须在config接口获得结果之后,config是一个客户端的异步操作,所以如果需要在页面加载时就调用相关接口,则须把相关接口放在ready函数中调用来确保正确执行。对于用户触发时才调用的接口,则可以直接调用,不需要放在ready函数中。
});
// return;
await wx.agentConfig({
corpid: this.corPid, // 必填,企业微信的corpid,必须与当前登录的企业一致
agentid: "1000017", // 必填,企业微信的应用id (e.g. 1000247)
timestamp: this.myTimestamp, // 必填,生成签名的时间戳
nonceStr: this.myNonceStr, // 必填,生成签名的随机串
signature: this.onSignature, // 必填,签名,见附录-JS-SDK使用权限签名算法
jsApiList: ["theCustomerDetailsApi"], //必填,传入需要使用的接口名称
success: function (res) {
console.log(111);
console.log(res);
// 回调
},
fail: function (res) {
console.log(res);
if (res.errMsg.indexOf("function not exist") > -1) {
alert("版本过低请升级");
}
},
});
},
}
运行结果及报错内容
vue.runtime.esm.js?2b0e:619 [Vue warn]: Error in created hook: "TypeError: wx.invoke is not a function"
index.vue?6ced:126 Uncaught (in promise) TypeError: wx.config is not a function
我的解答思路和尝试过的方法
找过官方,说是没有注入,但是有引入对应的文件
我想要达到的结果
可以正常调用