收藏
回答

wx.pluginLogin is not a function?

Page({
  onLoad() {
    console.log(wx.pluginLogin)
    wx.pluginLogin({
      success(res) {
        console.log('Login successful', res);
      },
      fail(err) {
        console.log('Login failed', err);
      }
    });
  },
})

2TypeError: wx.pluginLogin is not a function

at _callee$ (index.js? [sm]:20)


回答关注问题邀请回答
收藏

1 个回答

  • Hlxuan.
    Hlxuan.
    08-01

    wx.pluginLogin 接口仅在小程序插件中可调用,基础库 2.20.1 开始支持。

    08-01
    有用 1
    回复
登录 后发表内容