小程序
小游戏
企业微信
微信支付
扫描小程序码分享
我想获取图中的myValue的值,该咋获取呀,求助大牛
5 个回答
加粗
标红
插入代码
插入链接
插入图片
上传视频
this.data.myValue 你可能逻辑处理的有问题 你看看 这样是可以取到的
你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。
可以在组件中定义一个自定义事件triggerEvent把值传给页面,或者组件把值存在storage然后页面去storage拿到这个值,怎么方便怎么来
properties: {
myValue: {
type: String,
default () {
return ""
}
},
observers: {
'myValue': function(myValue) {
console.log(myValue)
直接this.data.xxxxxx就行了
this.properties.myValue
你可以先 console.log(this)看下。
let _this = this;
关注后,可在微信内接收相应的重要提醒。
请使用微信扫描二维码关注 “微信开放社区” 公众号
this.data.myValue 你可能逻辑处理的有问题 你看看 这样是可以取到的
可以在组件中定义一个自定义事件triggerEvent把值传给页面,或者组件把值存在storage然后页面去storage拿到这个值,怎么方便怎么来
properties: {
myValue: {
type: String,
default () {
return ""
}
}
},
observers: {
'myValue': function(myValue) {
console.log(myValue)
}
},
直接this.data.xxxxxx就行了
this.properties.myValue
你可以先 console.log(this)看下。
然后,调用的时候,用 _this.properties.myValue
let _this = this;