美文网首页
常用代码块

常用代码块

作者: Small_Potato | 来源:发表于2021-05-10 10:34 被阅读0次
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中
<image style="width: 200px; height: 200px; background-color: #eeeeee;" mode="{{mode}}" src="{{src}}" bindtap='imgtap'></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: 调用扫码
<button type="default" size="mini" bindtap="setcode">扫码 </button>
  setcode:function(){
    wx.scanCode({
      onlyFromCamera: true,
      success: (res) => {
        console.log(res)
      }
    })
  }
5: 深拷贝

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

相关文章

  • uni-app常用代码

    常用代码快 页面代码块

  • 常用代码块

    1: 文字超出显示省略号 1)如果容器有固定宽度 2)如果容器没有固定的宽度 2: 去除按钮边框 3: 自定义To...

  • iOS 自定义代码块

    常用的代码块 怎么定义代码块 各个属性代表意义

  • xcode 常用代码块

    在Xcode10正式发布之后,喜欢使用代码块的小伙伴会发现,原先位于编辑器右下角的代码块标识被放到上面了,点击 {...

  • golang常用代码块

    1.打印 2.字符串与int互转 3.格式化日期 4.睡眠 5.随机数 6.tcp连接 7.字符串分割 8.字符串...

  • Xcode常用代码块

    代码块路径 (注意:如果你的xcode没有添加过代码块,那你是找不到这个文件夹的) ~/Library/Devel...

  • Xcode常用代码块

    Xcode的代码片段(Code Snippets)创建自定义的代码片段,当你重用这些代码片段时,会给你带来很大的方...

  • iOS 常用代码块

    不定期添加和整理 如有帮助,点个喜欢可好? 目录 1. 扩大按钮点击范围(扩大点击事件响应范围) 富文本 2.1 ...

  • 常用的代码块

    改变WebView的字体大小 (void)webViewDidFinishLoad:(UIWebView *)we...

  • Sinon常用代码块

    #1,使用sinon创建假服务器 #2,使用sinon创建一个模块/对象的仿制品

网友评论

      本文标题:常用代码块

      本文链接:https://www.haomeiwen.com/subject/opdvdltx.html