json
{
"usingComponents": {
"verificationCode": "../../../component/verificationCode/verificationCode"
}
}
wxml
<view>
<button catchtap="showDialog">朴素按钮</button>
<view class="verificationCodeComp">
<verificationCode id='sssss'></verificationCode>
</view>
</view>
js
onReady: function () {
console.log('this.selectComponent("#sssss"); ',this.selectComponent("#sssss"))
},
showDialog: function() {
console.log('this.selectComponent("#sssss"); ',this.selectComponent("#sssss"))
this.setData({
isShow: !this.data.isShow,
})
},
检查下this指向?
把自定义组件放到和父组件同一路径下 只进行一次../ 就能用(能获得实例)) , 但是为什么
就不能用呢 (路径没问题 子组件都能显示出来 就能获得不到实例)