-
uniapp使用中碰到行数的书写 text显示固定的行数,超出部分使用...显示备注
//显示2行文本,超出部分省略号显示
.notice_content {
color: #666;
margin-top: 10rpx;
font-size: 28rpx;
line-height: 35rpx;
display: -webkit-box;
-webkit-box-orient: vertical;
-webkit-line-clamp: 2;
overflow: hidden;
text-overflow: ellipsis;
word-break: break-all;
}
-
uniapp使用中setTimeout的时候,在方法体中使用this获取外部的对象无效
//需要在外部定义this对象,使用self获取上下文数据
const self = this;