小程序引入组件以及将页面数据传给组件

要想在页面中引入组件,首先我们在页面json文件里加上:

 "usingComponents": {
    "customer": "/components/customer/customer"
  }

然后 wxml文件引用:

<customer newPhone="{{phone}}"></customer>

注意:此处标签值要与页面json文件里名称一致、phone为我页面js文件data里的数据

然后我们进入到组件wxml:

<button type="default" class="btn1" catchtap='phone'></button>

组件js里这么写:

     Component({
  /**
   * 组件的属性列表
   */
  properties: {
    // 外部wxml数据传入组件
    newPhone: {
      type: String,
      value: '',
      observer: function (newVal, oldVal) {
        
      }

    }

  },


  /**
   * 组件的方法列表
   */
  methods: {


// 拨打电话
phone() {
 console.log (this.properties.newPhone)
  wx.makePhoneCall({
    phoneNumber: this.properties.newPhone,
    success: function () {
      console.log("拨打电话成功!")
    },
    fail: function () {
      console.log("拨打电话失败!")
    }
  })
}
  }

})

我写的是一个拨打电话按钮的组件,看下效果:
在这里插入图片描述

至此,我们已经成功将外部页面的数据传给了组件

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值