收藏
回答

微信小程序引入插件跳转不到用户功能页是什么原因?

插件调用,微信开发工具测试可以跳转到用户功能页,拉取用户信息。微信小程序项目里引用插件,跳转不到用户功能页。

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

3 个回答

  • tom
    tom
    2021-11-19

    <!--plugin/components/hello-component.wxml-->

    <view class="container">

      <functional-page-navigator

        name="loginAndGetUserInfo"

        args="{{ args }}"

        version="develop"    

        bind:success="loginSuccess"

        bind:fail="loginFail"

      >

      <slot></slot>

      

      </functional-page-navigator>

      <!-- <text class="item" wx:key="{{ items }}" wx:for="{{ items }}">{{ item }}</text> -->

    </view>


    2021-11-19
    有用
    回复 3
    • tom
      tom
      2021-11-19
      // plugin/components/hello-component.js
      import { config } from '../config/config';
      import handle from '/static/js/login.js';
      Component({
        properties: {
          items: {
            type: Array,
            value: [],
            observer(newVal, oldVal, changedPath) {
              this.setData({items: newVal})
            }
          }
        },
        data: {
          items: [],
          args: {
            withCredentials: true,
            lang: 'zh_CN'
          },
          payConfig:{}
        },
        methods: {
          loginSuccess: function (res) {
            handle.auth(res.detail)
            // console.log(res.detail);
          },
          loginFail: function (res) {
            console.log(res);
          }
        }
      })
      2021-11-19
      回复
    • tom
      tom
      2021-11-19
      <hello-component></hello-component>拉取用户信息。
      2021-11-19
      回复
    • tom
      tom
      2021-11-22
      @曹孟良
      2021-11-22
      回复
  • 老马
    老马
    发表于小程序端
    2021-11-19

    么么哒

    2021-11-19
    有用
    回复
  • 曹孟良
    曹孟良
    2021-11-19

    引入的是啥插件,用户功能页是啥意思,有报错信息吗。多提供点信息出来,最好做一个代码片段发出来看看

    2021-11-19
    有用
    回复 3
    • tom
      tom
      2021-11-19
      2021-11-19
      回复
    • tom
      tom
      2021-11-19
      在开发工具是没问题的。能跑到拉取用户信息功能页,但是在微信小程序上用真机,第三张图就是空白页,没有报错。
      2021-11-19
      回复
    • tom
      tom
      2021-11-19
      代码我发布在楼下。
      2021-11-19
      回复
登录 后发表内容