rich-text多个nbsp空格出现撑开整个页面?
//index.js
//获取应用实例
const app = getApp()
Page({
data: {
motto: 'Hello World',
userInfo: {},
hasUserInfo: false,
canIUse: wx.canIUse('button.open-type.getUserInfo'),
html:"<p><span style='font-size:14px;'> 让我们一起,共建企业数智化新未来,共见佛山市的中台力量! </span></p>\n\n<p> </p>\n\n<p style='text-align: right;'><span style='font-size:14px;'></span></p>\n\n<p style='哈哈哈哈text-align: right;'><span style='font-size:14px;'>2020年10月10日</span></p>\n"
},
//事件处理函数
bindViewTap: function() {
wx.navigateTo({
url: '../logs/logs'
})
},
onLoad: function () {
if (app.globalData.userInfo) {
this.setData({
userInfo: app.globalData.userInfo,
hasUserInfo: true
})
} else if (this.data.canIUse){
// 由于 getUserInfo 是网络请求,可能会在 Page.onLoad 之后才返回
// 所以此处加入 callback 以防止这种情况
app.userInfoReadyCallback = res => {
this.setData({
userInfo: res.userInfo,
hasUserInfo: true
})
}
} else {
// 在没有 open-type=getUserInfo 版本的兼容处理
wx.getUserInfo({
success: res => {
app.globalData.userInfo = res.userInfo
this.setData({
userInfo: res.userInfo,
hasUserInfo: true
})
}
})
}
},
getUserInfo: function(e) {
console.log(e)
app.globalData.userInfo = e.detail.userInfo
this.setData({
userInfo: e.detail.userInfo,
hasUserInfo: true
})
}
})
很简单,只需要设置css样式即可:
rich-text{ word-break:break-all; }
代码片段如下:https://developers.weixin.qq.com/s/a2eCR7mC7Olw
编辑器有滚动条无法横向滚动,Android也有滚动条无法横向滚动,ios可以横向滚动。
你好,ios跟工具的表现一致吗?麻烦提供出现问题的具体机型、微信版本号、系统版本号,以及能复现问题的代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html),并提供下复现的截图看看。
编辑器有滚动条无法横向滚动,Android也有滚动条无法横向滚动,ios可以横向滚动。