常用代码块

1: 文字超出显示省略号

1)如果容器有固定宽度

view {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

2)如果容器没有固定的宽度

view {
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-all;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
2: 去除按钮边框
.contact_item {
    margin: 20rpx;
    font-size: 10pt;
    background: none !important;
}
.contact_item::after{
  border: none;
}
3: 自定义Toast图标
wx.showToast({
    image: "/images/余额.png",
    title: '录音时间太短',
})
4: 选取本地照片显示在image中


  setimg:function(){
    var _this =this
    wx.chooseImage({
      count: 1, // 默认9
      sizeType: ['original', 'compressed'], // 可以指定是原图还是压缩图,默认二者都有
      sourceType: ['album', 'camera'], // 可以指定来源是相册还是相机,默认二者都有
      success: function (res) {
        // 返回选定照片的本地文件路径列表,tempFilePath可以作为img标签的src属性显示图片
        var tempFilePaths = res.tempFilePaths
        _this.setData({
          src: tempFilePaths
        })
        //this.src=tempFilePaths

      }
    })
  }
5: 调用扫码

  setcode:function(){
    wx.scanCode({
      onlyFromCamera: true,
      success: (res) => {
        console.log(res)
      }
    })
  }
5: 深拷贝

JSON.parse(JSON.stringify(this.QueryParams))

你可能感兴趣的:(常用代码块)