请问能否根据用户openid 来获取用户当前小程序的appid?
const accountInfo = wx.getAccountInfoSync();
console.log(accountInfo.miniProgram.appId, ‘小程序 appId’) // 小程序 appId
https://developers.weixin.qq.com/miniprogram/dev/api/open-api/account-info/wx.getAccountInfoSync.html
并没有,但是你可以根据当前用户的请求信息知道是那个appid访问的。
没有