<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: {
withCredentials: true,
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: {
loginSuccess: function (res) {
this.triggerEvent('success',res.detail);
},
loginFail: function (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
不明觉厉