小程序rich-text单行省略
返回数据为HTML字符串,需要在rich-text渲染, 需要在一行显示,超出部分进行隐藏
template片段
<rich-text :nodes="formatRich(item.examName || '')"></rich-text>
script方法
formatRich(val) {
return "<div style='overflow: hidden;text-overflow: ellipsis;white-space: nowrap;'>" + val + "</div>"
},
通过以上方法即可解决文章来源:https://www.toymoban.com/news/detail-574254.html
参考文档:https://blog.csdn.net/u013611033/article/details/121535633文章来源地址https://www.toymoban.com/news/detail-574254.html
到了这里,关于小程序rich-text单行省略的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!