- Function(...) is not a function且空白页面怎么回事?
开发者工具最新版本,调试基础库2.16.0,体验版在手机上就是空白页面,报错Function(...) is not a function是什么情况啊,一直找不到处理办法。求助大佬们![图片][图片]
2022-01-12 - initNativeTransServiceId. ntrans:object component?
真机调试模式或者体验版的时候,小程序页面空白并且报错:initNativeTransServiceId. ntrans:object componentId :-733912521。请教一下是什么原因,是否有人遇到过呀?[图片][图片][图片]
2022-01-07 - 微信小程序顶部导航栏字体如何设置居中,安卓系统?
微信小程序安卓系统,顶部导航栏字体突然居左显示了,请问怎么改成居中?
2021-12-09 - 小程序中企业微信获取外部联系人,调用wx.qy.getCurExternalContact无反应?
在小程序中 企业微信获取外部联系人信息的时候,在wx.getSystemInfo方法中,获取到code2session后,无法进入到wx.qy.getCurExternalContact中,也有按照文档中从profile页面中进入了,求指教? wx.getSystemInfo({ //获取系统信息 success: wxinfo => { if (wxinfo.environment == 'wxwork') { wx.qy.login({ success: async function (res) { const ret = await code2session({ code: res.code }); //获取唯一码 // wx.qy.getContext({ // success: function (c) { // } // }); wx.qy.getCurExternalContact({ // 《========无法进入到此方法中 success: async function (res) { var userId = res.userId; //返回当前外部联系人userId // console.log( // 'current external uid ' + userId // ); const retu = await extuidtounionid({ extuid: userId }); if (retu.result == 0) { let userinfo = await userInfoByUnionidHs( retu.data.unionid ); if (userinfo.result == 0) { console.log('ress', res) userinfo.data.id && getUserDetail(userinfo.data.id); } } } }); } }); } } });
2021-03-05