小程序
小游戏
企业微信
微信支付
扫描小程序码分享
插件调用,微信开发工具测试可以跳转到用户功能页,拉取用户信息。微信小程序项目里引用插件,跳转不到用户功能页。
3 个回答
加粗
标红
插入代码
插入链接
插入图片
上传视频
<!--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>
你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。
么么哒
引入的是啥插件,用户功能页是啥意思,有报错信息吗。多提供点信息出来,最好做一个代码片段发出来看看
关注后,可在微信内接收相应的重要提醒。
请使用微信扫描二维码关注 “微信开放社区” 公众号
<!--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>
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);
}
}
})
么么哒
引入的是啥插件,用户功能页是啥意思,有报错信息吗。多提供点信息出来,最好做一个代码片段发出来看看