收藏
回答

某些情况下会打不开插件功能页面,报错Invalid plugin info.

问题类型 插件 AppID 插件版本号 AppID 微信版本 基础库版本
Bug wxe681119e2462f3ea 1.0.2 wxe681119e2462f3ea 8.0.32 2.30.0
<functional-page-navigator
    name="loginAndGetUserInfo"
    args="{{ args }}"
    version="{{ version }}"
    bind:success="loginSuccess"
    bind:fail="loginFail"
    bind:cancel="loginCancel"
  >
    <button style="background-color: {{btnStyle.backgroundColor}};border-radius: {{btnStyle.borderRadius}};color: {{btnStyle.color}};font-size: {{btnStyle.fontSize}};">
     {{btnname}}
    </button>
</functional-page-navigator>

Component({
  /**
   * 组件的属性列表
   */
  properties: {
    version:{
      type:String,
      value:"develop",
      observer(newVal, oldVal, changedPath) {
        this.setData({version: newVal});
        console.log(this.data.version);
      }
    },
    btnname:{
      type:String,
      value:"授权获取用户信息",
      observer(newVal, oldVal, changedPath) {
        console.log(this.data.btnname);
        this.setData({btnname: newVal})
      }
    },
    btnStyle:{
      type:Object,
      value:{
        "borderRadius""10px",
        "backgroundColor""#07C160",
        "color""#FFFFFF",
        "fontSize":"18px"
      },
      observer(newVal, oldVal, changedPath){
        console.log(JSON.stringify(this.data.btnStyle));
        this.setData({btnStyle:newVal});
      }
    }
  },


  /**
   * 组件的初始数据
   */
  data: {
    args: {
      withCredentialstrue,
      lang'zh_CN'
    },
    version:"",
    btnname:"",
    btnStyle:{
      "borderRadius""10px",
      "backgroundColor""#07C160",
      "color""#FFFFFF",
      "fontSize":"18px"
    }
  },


  /**
   * 生命周期
   */
  lifetimes:{
    attached(){
      console.log("组件attached:"+this.data.version);
    },
    ready(){
      console.log("组件ready:"+this.data.version);
    }
  },
  /**
   * 组件的方法列表
   */
  methods: {
    loginSuccessfunction (res{
      this.triggerEvent('success',res.detail);
    },
    loginFailfunction (res{
      this.triggerEvent('fail',res.detail);
    },
    loginCancel:function(res){
      this.triggerEvent('cancel',res.detail);
    }
  }
})


报错信息:

functional-page-navigator: navigate to functional page failed. Invalid plugin info.
https://servicewechat.com/wxe681119e2462f3ea/110/page-frame.html:2:1244920
n@https://servicewechat.com/wxe681119e2462f3ea/110/page-frame.html:2:2702
s@https://servicewechat.com/wxe681119e2462f3ea/110/page-frame.html:2:2906
https://servicewechat.com/wxe681119e2462f3ea/110/page-frame.html:2:2965
G@https://servicewechat.com/wxe681119e2462f3ea/110/page-frame.html:2:52781
https://servicewechat.com/wxe681119e2462f3ea/110/page-frame.html:2:2856
https://servicewechat.com/wxe681119e2462f3ea/110/page-frame.html:2:298723
https://servicewechat.com/wxe681119e2462f3ea/110/page-frame.html:2:296494
emit@https://servicewechat.com/wxe681119e2462f3ea/110/page-frame.html:2:95295
dispatch@https://servicewechat.com/wxe681119e2462f3ea/110/page-frame.html:2:100259
cb@https://servicewechat.com/wxe681119e2462f3ea/110/page-frame.html:2:100569
emit@https://servicewechat.com/wxe681119e2462f3ea/110/page-frame.html:2:94905
subscribeHandler@https://servicewechat.com/wxe681119e2462f3ea/110/page-frame.html:2:97638
global code@https://servicewechat.com/wxe681119e2462f3ea/110/page-frame.html:1:72
回答关注问题邀请回答
收藏

1 个回答

  • 毛翼
    毛翼
    2023-01-29

    不明觉厉

    2023-01-29
    有用
    回复
登录 后发表内容