uni.showToast中的title换行显示
时间: 2024-01-18 08:10:10 浏览: 360
解决微信小程序真机 showToast 不显示
5星 · 资源好评率100%
您可以通过在 `title` 字符串中使用 `\n` 来实现 `uni.showToast` 的 `title` 换行显示。例如:
```javascript
uni.showToast({
title: '第一行\n第二行',
icon: 'none'
})
```
在上述示例中,`\n` 表示换行符,它将 `title` 字符串分为两行显示。
阅读全文