微信小程序连续多个特殊字符自动换行解决方法

效果图

.wxml

复制代码
<view class="container">
  <text>没转换{{text}}</text>
  <view style="height: 60rpx;" />
  <text>转换后{{convert}}</text>
</view>

.js

复制代码
Page({
  data: {
    text:'!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!',
    convert:'',
  },
  convertSet(str) {
    /** [] 里面写上需要转译得字符 */
    const a = /[!]/g;
    const b = str.replace(a, (match) => ` ${match}`);
    return b;
  },
  onLoad(){
    const convert = this.convertSet(this.data.text);
    this.setData({
      convert
    })
  },
})

.wxss

复制代码
.container{
  background: #f2f2f2;
  width: 600rpx;
  margin: 0 auto;
  padding: 30rpx;
  box-sizing: border-box;
}
text{
  width: 100%;
  word-wrap: break-word;
}

遇到问题可以看我主页加我Q,很少看博客,对你有帮助别忘记点赞收藏。

相关推荐
计算机毕设指导612 小时前
基于微信小程序的智能停车场管理系统【源码文末联系】
java·spring boot·微信小程序·小程序·tomcat·maven·intellij-idea
2501_9339072113 小时前
如何选择西安优质小程序开发服务与本凡码农合作?
科技·微信小程序·小程序
咖啡の猫1 天前
微信小程序案例 - 自定义 tabBar
微信小程序·小程序·notepad++
咖啡の猫2 天前
微信小程序全局数据共享
微信小程序·小程序
桐溪漂流2 天前
微信小程序cli脚本预览上传
微信小程序·小程序
咖啡の猫2 天前
微信小程序使用 npm 包
微信小程序·小程序·npm
东东5162 天前
xxx食堂移动预约点餐系统 (springboot+微信小程序)
spring boot·微信小程序·小程序·毕业设计·个人开发·毕设
韩立学长3 天前
【开题答辩实录分享】以《智慧校园平台微信小程序》为例进行选题答辩实录分享
spring boot·微信小程序·小程序
h_65432103 天前
微信小程序:按顺序一张图片加载完后,再加载另一张
微信小程序·小程序
qq_316837754 天前
uniapp打包微信小程序使用插件
微信小程序·小程序·uni-app