收藏
回答

微信学生身份认证插件无法调起?

学生认证插件无法调起,申请已通过,插件已添加,插件 AppID: wxa16657d57059e0f0



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

3 个回答

  • 微盟
    微盟
    04-19

    可参考该文档 https://developers.weixin.qq.com/miniprogram/dev/platform-capabilities/industry/student.html 五、开发文档

    04-19
    有用 1
    回复 1
    • 句永吉
      句永吉
      05-07
      返回结果能带有类似学校信息等参数吗
      05-07
      回复
  •  空心非无心。
    空心非无心。
    05-23

    遇到同样的问题, 请问楼主解决了吗?

    05-23
    有用
    回复
  • wrysunny
    wrysunny
    04-20
    //引入插件
    "plugins": {
        "studentVerify": {
          "version": "latest",
          "provider": "wxa16657d57059e0f0"
        }
     }
    //注册组件
    "usingComponents": {
        "studentVerify": "plugin://studentVerify/verify"
    }
    //页面引入
    <student-verify :show="showStudentVerifyDialog" :isQuick="true"></student-verify>
    //点击按钮
    <button @click="onShowStudentVerify">授权学生身份</button>
    //使showStudentVerifyDialog为true
    onShowStudentVerifyDialog() {
      this.showStudentVerifyDialog = true;
    },
    无报错,无任何反应
    
    04-20
    有用
    回复 1
    • 你听得到
      你听得到
      06-05
      "student-verify": "plugin://studentVerify/verify"
      得这么引入吧, 因为studentVerify会最终编译成student-verify
      06-05
      回复
登录 后发表内容